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
commit0fe03771ce2a03915c266a0d4d34f2c11b229123 (patch)
tree54d54db84fc0ebd6c992b13dbd36ddb05b009eb4 /src/util/schemas/UserProfileModifySchema.ts
parentMerge branch 'maddy/refactor' into maddy/bodyParserPatch (diff)
downloadserver-0fe03771ce2a03915c266a0d4d34f2c11b229123.tar.xz
Profile themes and pronouns
Diffstat (limited to '')
-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]
 }