summary refs log tree commit diff
path: root/src/schema/Guild.ts
diff options
context:
space:
mode:
authorIntevel ツ <59223342+Intevel@users.noreply.github.com>2021-05-08 14:27:43 +0200
committerIntevel ツ <59223342+Intevel@users.noreply.github.com>2021-05-08 14:27:43 +0200
commitf5ea46a79be6f26abf39be8809a291ee66db80a0 (patch)
tree4fd8a9ca365bb2d19e1680e054dc2e58a364a979 /src/schema/Guild.ts
parentMerge branch 'master' of https://github.com/fosscord/fosscord-api (diff)
downloadserver-f5ea46a79be6f26abf39be8809a291ee66db80a0.tar.xz
Update Guild.ts
Diffstat (limited to 'src/schema/Guild.ts')
-rw-r--r--src/schema/Guild.ts14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/schema/Guild.ts b/src/schema/Guild.ts

index 53976191..4677efd5 100644 --- a/src/schema/Guild.ts +++ b/src/schema/Guild.ts
@@ -110,3 +110,17 @@ export interface GuildTemplateCreateSchema { name: string, avatar?: string, } + +export const GuildAddChannelToWelcomeScreenSchema = { + channel_id: String, + description: String, + $emoji_id: String, + emoji_name: String, +} + +export interface GuildAddChannelToWelcomeScreenSchema { + channel_id: string; + description: string; + emoji_id?: string; + emoji_name: string; +} \ No newline at end of file