Add staff_only flag in guild create schema

This commit is contained in:
Rory& 2025-07-07 19:54:33 +02:00
parent 479b428a2d
commit 5ff2267cd1
2 changed files with 1 additions and 0 deletions

Binary file not shown.

View File

@ -29,4 +29,5 @@ export interface GuildCreateSchema {
system_channel_id?: string; system_channel_id?: string;
rules_channel_id?: string; rules_channel_id?: string;
guild_template_code?: string; guild_template_code?: string;
staff_only?: boolean;
} }