summary refs log tree commit diff
path: root/src/util/schemas/UserProfileModifySchema.ts
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-12-31 17:25:28 +1100
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-12-31 17:51:57 +1100
commit7a725bab50aa09253e9f369755ba531092e5d407 (patch)
tree7cb6e2ecdf0703c06d25ddbdad3cbf437da6efc4 /src/util/schemas/UserProfileModifySchema.ts
parentMerge branch 'maddy/refactor' into maddy/bodyParserPatch (diff)
downloadserver-7a725bab50aa09253e9f369755ba531092e5d407.tar.xz
Profile themes and pronouns
Diffstat (limited to 'src/util/schemas/UserProfileModifySchema.ts')
-rw-r--r--src/util/schemas/UserProfileModifySchema.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/util/schemas/UserProfileModifySchema.ts b/src/util/schemas/UserProfileModifySchema.ts

index 33a372c9..1e53d9e4 100644 --- a/src/util/schemas/UserProfileModifySchema.ts +++ b/src/util/schemas/UserProfileModifySchema.ts
@@ -2,4 +2,10 @@ export interface UserProfileModifySchema { bio?: string; accent_color?: number | null; banner?: string | null; + pronouns?: string; + + /* + * @items.type integer + */ + theme_colors?: [number, number] }