diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-07-03 20:58:44 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-07-03 21:03:49 +1000 |
commit | f7b5ae4bbc479e43c7a078198a0dfee43b14f827 (patch) | |
tree | 33dc9cf5121c24137e72abdddf536a5c72369b5b /api/src | |
parent | Merge branch 'fix/channelPermissionOverwriteSchema' into feat/latestWebClient (diff) | |
download | server-f7b5ae4bbc479e43c7a078198a0dfee43b14f827.tar.xz |
Merge branch 'fix/channelPermissionOverwriteSchema' into feat/latestWebClient
Diffstat (limited to 'api/src')
-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 10721413..489dea49 100644 --- a/api/src/routes/guilds/index.ts +++ b/api/src/routes/guilds/index.ts @@ -9,7 +9,7 @@ export interface GuildCreateSchema { /** * @maxLength 100 */ - name: string; + name?: string; region?: string; icon?: string | null; channels?: ChannelModifySchema[]; |