diff options
Diffstat (limited to 'src/lib/models/Guild.ts')
-rw-r--r-- | src/lib/models/Guild.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/lib/models/Guild.ts b/src/lib/models/Guild.ts index b155330..9b283ab 100644 --- a/src/lib/models/Guild.ts +++ b/src/lib/models/Guild.ts @@ -52,6 +52,18 @@ export const guildSettingsObj = { description: 'These users will be able to use commands in channels blacklisted.', type: 'user-array', configurable: true + }, + logChannels: { + name: 'Log Channels', + description: 'The channel were logs are sent.', + type: 'custom', + configurable: false + }, + autoModPhases: { + name: 'Automod Phases', + description: 'Custom phrases to be detected by automod.', + type: 'custom', + configurable: false } }; export type GuildSettings = keyof typeof guildSettingsObj; |