diff options
Diffstat (limited to 'src/lib/models/Guild.ts')
-rw-r--r-- | src/lib/models/Guild.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/models/Guild.ts b/src/lib/models/Guild.ts index 3dbb0ea..6933794 100644 --- a/src/lib/models/Guild.ts +++ b/src/lib/models/Guild.ts @@ -82,6 +82,10 @@ export const guildFeaturesObj = { name: 'Sticky Roles', description: 'Restores past roles to a user when they rejoin.' }, + reporting: { + name: 'Reporting', + description: 'Allow users to make reports.' + }, modsCanPunishMods: { name: 'Mods Can Punish Mods', description: 'Allow moderators to punish other moderators.' @@ -96,6 +100,10 @@ export const guildLogsObj = { moderation: { description: 'Sends a message in this channel every time a moderation action is performed.', configurable: false + }, + report: { + description: 'Logs user reports.', + configurable: true } }; export type GuildLogType = keyof typeof guildLogsObj; |