diff options
author | Puyodead1 <puyodead@protonmail.com> | 2022-07-30 14:33:01 -0400 |
---|---|---|
committer | Puyodead1 <puyodead@protonmail.com> | 2022-07-30 14:33:01 -0400 |
commit | f3b1e9b02641376177c4c358074e01f201ba0ff8 (patch) | |
tree | 6b97593f287c6c11da4d6fd534344ef0be00f729 /api/src | |
parent | fix: not being able to enable community (diff) | |
download | server-f3b1e9b02641376177c4c358074e01f201ba0ff8.tar.xz |
add discriminator to user modify schema
Diffstat (limited to 'api/src')
-rw-r--r-- | api/src/routes/users/@me/index.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/api/src/routes/users/@me/index.ts b/api/src/routes/users/@me/index.ts index 1af413c4..7fc20457 100644 --- a/api/src/routes/users/@me/index.ts +++ b/api/src/routes/users/@me/index.ts @@ -11,6 +11,7 @@ export interface UserModifySchema { * @maxLength 100 */ username?: string; + discriminator?: string; avatar?: string | null; /** * @maxLength 1024 |