diff options
| author | 2021-10-12 20:38:13 +0100 | |
|---|---|---|
| committer | 2021-11-30 11:39:46 +0000 | |
| commit | 5df26bafa58ed036333eb1d4fa7438cf93c4b7c9 (patch) | |
| tree | b24dc431808c0ed5618c077e5b28943f5e1a6b4e | |
| parent | Remove the subscribe command from the verification cog (diff) | |
Add self assignable roles to config
Diffstat (limited to '')
| -rw-r--r-- | bot/constants.py | 5 | ||||
| -rw-r--r-- | config-default.yml | 5 | 
2 files changed, 10 insertions, 0 deletions
| diff --git a/bot/constants.py b/bot/constants.py index 36b917734..36a92da1f 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -484,7 +484,12 @@ class Roles(metaclass=YAMLGetter):      section = "guild"      subsection = "roles" +    # Self-assignable roles, see the Subscribe cog +    advent_of_code: int      announcements: int +    lovefest: int +    pyweek_announcements: int +      contributors: int      help_cooldown: int      muted: int diff --git a/config-default.yml b/config-default.yml index 7400cf200..0d3ddc005 100644 --- a/config-default.yml +++ b/config-default.yml @@ -264,7 +264,12 @@ guild:          - *BLACK_FORMATTER      roles: +        # Self-assignable roles, see the Subscribe cog +        advent_of_code:                         518565788744024082          announcements:                          463658397560995840 +        lovefest:                               542431903886606399 +        pyweek_announcements:                   897568414044938310 +          contributors:                           295488872404484098          help_cooldown:                          699189276025421825          muted:              &MUTED_ROLE         277914926603829249 | 
