diff options
Diffstat (limited to 'bot/constants.py')
| -rw-r--r-- | bot/constants.py | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index 416dd0e7..ba4345bc 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -20,6 +20,7 @@ __all__ = (      "Tokens",      "Wolfram",      "RedisConfig", +    "RedirectOutput",      "MODERATION_ROLES",      "STAFF_ROLES",      "WHITELISTED_CHANNELS", @@ -270,6 +271,10 @@ class Source:      github_avatar_url = "https://avatars1.githubusercontent.com/u/9919" +class RedirectOutput: +    delete_delay: int = 10 + +  # Default role combinations  MODERATION_ROLES = Roles.moderator, Roles.admin, Roles.owner  STAFF_ROLES = Roles.helpers, Roles.moderator, Roles.admin, Roles.owner  |