1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-09 12:12:35 +01:00

Add guild_template_code to GuildCreateSchema

Fixes guild creation due to additional property error.
This commit is contained in:
SupremeMortal 2024-09-14 22:01:46 +01:00
parent 224d4020d0
commit 79eb8b6785
No known key found for this signature in database

View File

@ -28,4 +28,5 @@ export interface GuildCreateSchema {
channels?: ChannelModifySchema[];
system_channel_id?: string;
rules_channel_id?: string;
guild_template_code?: string;
}