diff options
author | AlTech98 <altech123159@gmail.com> | 2021-09-13 19:25:44 +0200 |
---|---|---|
committer | AlTech98 <altech123159@gmail.com> | 2021-09-13 19:25:44 +0200 |
commit | 5589c26b9442a27ee2d1eb2fa882a529eec8a784 (patch) | |
tree | 20cb8691904d47037e4e97ec72a362db82e21577 /api/src/routes/guilds/index.ts | |
parent | Merge pull request #357 from AlTech98/user-update (diff) | |
download | server-5589c26b9442a27ee2d1eb2fa882a529eec8a784.tar.xz |
Fix #356
Diffstat (limited to 'api/src/routes/guilds/index.ts')
-rw-r--r-- | api/src/routes/guilds/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/src/routes/guilds/index.ts b/api/src/routes/guilds/index.ts index ba951f96..674dc16b 100644 --- a/api/src/routes/guilds/index.ts +++ b/api/src/routes/guilds/index.ts @@ -16,7 +16,7 @@ export interface GuildCreateSchema { icon?: string; channels?: ChannelModifySchema[]; guild_template_code?: string; - system_channel_id?: string; + system_channel_id?: string | null; rules_channel_id?: string; } |