Skip to content

Commit

Permalink
feat: add more fields to user profile (#1011)
Browse files Browse the repository at this point in the history
* feat: add social networks to user profile

* feat: add cover to profile
  • Loading branch information
wa0x6e authored Jun 8, 2024
1 parent 39b552f commit 44598ef
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/schemas/profile.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,24 @@
"title": "avatar",
"format": "customUrl",
"maxLength": 256
},
"cover": {
"type": "string",
"title": "avatar",
"format": "customUrl",
"maxLength": 256
},
"twitter": {
"type": "string",
"title": "twitter",
"pattern": "^[A-Za-z0-9_]*$",
"maxLength": 15
},
"github": {
"type": "string",
"title": "github",
"pattern": "^[A-Za-z0-9_-]*$",
"maxLength": 39
}
},
"required": [],
Expand Down

0 comments on commit 44598ef

Please sign in to comment.