@@ -16,26 +16,36 @@ class ConfigManager(ConfigManagerABC):
16
16
allowed_to_change_in_command = {
17
17
# activity
18
18
'twitch_url' ,
19
+
19
20
# bot settings
20
21
'main_category_id' , 'disable_autoupdates' , 'prefix' , 'mention' ,
21
- 'main_color' , 'user_typing' , 'mod_typing' , 'account_age' ,
22
+ 'main_color' , 'user_typing' , 'mod_typing' , 'account_age' ,
23
+
22
24
# logging
23
25
'log_channel_id' ,
26
+
24
27
# threads
25
- 'sent_emoji' , 'blocked_emoji' , 'thread_creation_response' ,
28
+ 'sent_emoji' , 'blocked_emoji' , 'close_emoji' , 'disable_recipient_thread_close' ,
29
+ 'thread_creation_response' , 'thread_creation_footer' , 'thread_creation_title' ,
30
+ 'thread_close_footer' , 'thread_close_title' ,
31
+
26
32
# moderation
27
33
'recipient_color' , 'mod_tag' , 'mod_color' ,
34
+
28
35
# anonymous message
29
36
'anon_username' , 'anon_avatar_url' , 'anon_tag'
30
37
}
31
38
32
39
internal_keys = {
33
40
# bot presence
34
41
'activity_message' , 'activity_type' , 'status' ,
42
+
35
43
# moderation
36
44
'blocked' ,
45
+
37
46
# threads
38
47
'snippets' , 'notification_squad' , 'subscriptions' , 'closures' ,
48
+
39
49
# misc
40
50
'aliases' , 'plugins'
41
51
}
@@ -44,10 +54,13 @@ class ConfigManager(ConfigManagerABC):
44
54
# Modmail
45
55
'modmail_api_token' , 'modmail_guild_id' , 'guild_id' , 'owners' ,
46
56
'log_url' , 'mongo_uri' ,
57
+
47
58
# bot
48
59
'token' ,
60
+
49
61
# GitHub
50
62
'github_access_token' ,
63
+
51
64
# Logging
52
65
'log_level'
53
66
}
0 commit comments