From de86c77eff4c2dfd5421c9a14a8f88cbac7abd18 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Mon, 14 Feb 2022 20:54:55 -0500 Subject: fix: disable appeals for now --- src/lib/models/instance/Guild.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/lib/models/instance') diff --git a/src/lib/models/instance/Guild.ts b/src/lib/models/instance/Guild.ts index b81562c..4d7f208 100644 --- a/src/lib/models/instance/Guild.ts +++ b/src/lib/models/instance/Guild.ts @@ -311,6 +311,7 @@ interface GuildFeature { name: string; description: string; default: boolean; + notConfigurable?: boolean; } const asGuildFeature = (gf: { [K in keyof T]: GuildFeature }) => gf; @@ -389,7 +390,8 @@ export const guildFeaturesObj = asGuildFeature({ punishmentAppeals: { name: 'Punishment Appeals', description: 'Allow users to appeal their punishments and send the appeal to the configured channel.', - default: false + default: false, + notConfigurable: true } }); @@ -412,7 +414,7 @@ export const guildLogsObj = { }, appeals: { description: 'Where punishment appeals are sent.', - configurable: true + configurable: false } }; -- cgit