aboutsummaryrefslogtreecommitdiff
path: root/src/lib/models/instance/Guild.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/models/instance/Guild.ts')
-rw-r--r--src/lib/models/instance/Guild.ts17
1 files changed, 12 insertions, 5 deletions
diff --git a/src/lib/models/instance/Guild.ts b/src/lib/models/instance/Guild.ts
index 4d7f208..cdf3552 100644
--- a/src/lib/models/instance/Guild.ts
+++ b/src/lib/models/instance/Guild.ts
@@ -342,11 +342,12 @@ export const guildFeaturesObj = asGuildFeature({
default: false
},
// todo implement a better auto thread system
- // autoThread: {
- // name: 'Auto Thread',
- // description: 'Creates a new thread for messages in configured channels.',
- // default: false
- // },
+ autoThread: {
+ name: 'Auto Thread',
+ description: 'Creates a new thread for messages in configured channels.',
+ default: false,
+ notConfigurable: true
+ },
blacklistedFile: {
name: 'Blacklisted File',
description: 'Automatically deletes malicious files.',
@@ -392,6 +393,12 @@ export const guildFeaturesObj = asGuildFeature({
description: 'Allow users to appeal their punishments and send the appeal to the configured channel.',
default: false,
notConfigurable: true
+ },
+ perspectiveApi: {
+ name: 'Perspective API',
+ description: 'Use the Perspective API to detect toxicity.',
+ default: false,
+ notConfigurable: true
}
});