diff options
author | 2022-11-26 18:58:11 +0100 | |
---|---|---|
committer | 2022-11-26 18:58:31 +0100 | |
commit | 3686f60305e773f91c61e7c49a67d2d1f2d5c28a (patch) | |
tree | d3156a560dfdb5daa47d3d4da7fd4b035d58ebf1 | |
parent | Merge pull request #2338 from python-discord/bump-bot-core (diff) |
add the roles channel to the config
-rw-r--r-- | bot/constants.py | 2 | ||||
-rw-r--r-- | config-default.yml | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index 24862059e..90527d66a 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -465,6 +465,8 @@ class Channels(metaclass=YAMLGetter): big_brother_logs: int + roles: int + class Webhooks(metaclass=YAMLGetter): section = "guild" diff --git a/config-default.yml b/config-default.yml index c9d043ff7..9a3f35008 100644 --- a/config-default.yml +++ b/config-default.yml @@ -235,6 +235,9 @@ guild: # Watch big_brother_logs: &BB_LOGS 468507907357409333 + # Roles + roles: 851270062434156586 + moderation_categories: - *MODS_CATEGORY - *MODMAIL |