1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-23 10:52:30 +01:00

Merge branch 'feat/latestWebClient' into slowcord

This commit is contained in:
Madeline 2022-07-10 14:22:27 +10:00
commit 33b973c91b
No known key found for this signature in database
GPG Key ID: 1958E017C36F2E47
2 changed files with 4 additions and 0 deletions

View File

@ -12535,6 +12535,9 @@
}, },
"email": { "email": {
"type": "string" "type": "string"
},
"discriminator": {
"type": "string"
} }
}, },
"additionalProperties": false, "additionalProperties": false,

View File

@ -23,6 +23,7 @@ export interface UserModifySchema {
new_password?: string; new_password?: string;
code?: string; code?: string;
email?: string; email?: string;
discriminator?: string;
} }
router.get("/", route({}), async (req: Request, res: Response) => { router.get("/", route({}), async (req: Request, res: Response) => {