summary refs log tree commit diff
path: root/src/util/schemas/UserProfileModifySchema.ts
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2022-08-31 21:57:36 +0200
committerGitHub <noreply@github.com>2022-08-31 21:57:36 +0200
commit932348cb8813c98c30e44c2ea34459ed5a65490a (patch)
treecb581f1795758530a6826dbcfe46d30a18ce5e52 /src/util/schemas/UserProfileModifySchema.ts
parentMerge pull request #866 from FSG-Cat/Bug-Report-Template (diff)
parentMerge branch 'staging' into feat/guild-profiles (diff)
downloadserver-932348cb8813c98c30e44c2ea34459ed5a65490a.tar.xz
Merge pull request #872 from Puyodead1/feat/guild-profiles
implement guild profiles and fix user profiles
Diffstat (limited to 'src/util/schemas/UserProfileModifySchema.ts')
-rw-r--r--src/util/schemas/UserProfileModifySchema.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/util/schemas/UserProfileModifySchema.ts b/src/util/schemas/UserProfileModifySchema.ts
new file mode 100644

index 00000000..33a372c9 --- /dev/null +++ b/src/util/schemas/UserProfileModifySchema.ts
@@ -0,0 +1,5 @@ +export interface UserProfileModifySchema { + bio?: string; + accent_color?: number | null; + banner?: string | null; +}