1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-23 02:42:28 +01:00

add discriminator to user modify schema

This commit is contained in:
Puyodead1 2022-07-30 14:33:01 -04:00
parent 9ab01e0404
commit f3b1e9b026
No known key found for this signature in database
GPG Key ID: BA5F91AAEF68E5CE
2 changed files with 6 additions and 0 deletions

View File

@ -12499,6 +12499,11 @@
"maxLength": 100,
"type": "string"
},
"discriminator": {
"minLength": 4,
"maxLength": 4,
"type": "string"
},
"avatar": {
"type": [
"null",

View File

@ -11,6 +11,7 @@ export interface UserModifySchema {
* @maxLength 100
*/
username?: string;
discriminator?: string;
avatar?: string | null;
/**
* @maxLength 1024