summary refs log tree commit diff
diff options
context:
space:
mode:
authorIntevel ツ <59223342+Intevel@users.noreply.github.com>2021-05-05 22:21:14 +0200
committerIntevel ツ <59223342+Intevel@users.noreply.github.com>2021-05-05 22:21:14 +0200
commit019633a3de59175fe3dbbaa985c9ca5c33b465c7 (patch)
treecf1b91e5b9afc48374d52666f34865fda71c6210
parentUpdate Template.ts (diff)
downloadserver-019633a3de59175fe3dbbaa985c9ca5c33b465c7.tar.xz
Update Guild.ts
-rw-r--r--src/schema/Guild.ts11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/schema/Guild.ts b/src/schema/Guild.ts

index 2b792db0..53976191 100644 --- a/src/schema/Guild.ts +++ b/src/schema/Guild.ts
@@ -99,3 +99,14 @@ export const GuildGetSchema = { approximate_presence_count: true, // welcome_screen: true, }; + +export const GuildTemplateCreateSchema = { + name: String, + $avatar: String, + +}; + +export interface GuildTemplateCreateSchema { + name: string, + avatar?: string, +}