summary refs log tree commit diff
path: root/api/src/routes/guilds/index.ts
diff options
context:
space:
mode:
authorAlTech98 <altech123159@gmail.com>2021-09-18 08:03:52 +0200
committerGitHub <noreply@github.com>2021-09-18 08:03:52 +0200
commit2580f6b89116ee69de1f6485eef73563a26414cd (patch)
treebd90b3af6318613d54644b828e3ff8cb59811a78 /api/src/routes/guilds/index.ts
parentFix icon, owner_id change and channel deletion for group DMs (diff)
parent:bug: fix body parse treating null not as undefined (except for icons/avatars) (diff)
downloadserver-2580f6b89116ee69de1f6485eef73563a26414cd.tar.xz
Merge branch 'fosscord:master' into fix-dm
Diffstat (limited to '')
-rw-r--r--api/src/routes/guilds/index.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/src/routes/guilds/index.ts b/api/src/routes/guilds/index.ts

index 2334bb9c..2e68d953 100644 --- a/api/src/routes/guilds/index.ts +++ b/api/src/routes/guilds/index.ts
@@ -12,10 +12,10 @@ export interface GuildCreateSchema { */ name: string; region?: string; - icon?: string; + icon?: string | null; channels?: ChannelModifySchema[]; guild_template_code?: string; - system_channel_id?: string | null; + system_channel_id?: string; rules_channel_id?: string; }