diff options
author | 2022-01-31 23:09:59 +0000 | |
---|---|---|
committer | 2022-01-31 23:09:59 +0000 | |
commit | 3f1089f701677233ee1f485979ed755c5285f5be (patch) | |
tree | 3d570d4c885e0e8ab5b9fa1f714ca68a38c010f9 | |
parent | 🔧 Add `notify_running_low` config values (diff) |
🔧 Add `notify_running_low` config values
-rw-r--r-- | bot/constants.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bot/constants.py b/bot/constants.py index 1b713a7e3..ecb1ed81b 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -619,10 +619,12 @@ class HelpChannels(metaclass=YAMLGetter): max_available: int max_total_channels: int name_prefix: str - notify: bool notify_channel: int notify_minutes: int - notify_roles: List[int] + notify_none_remaining: bool + notify_none_remaining_roles: List[int] + notify_running_low: bool + notify_running_low_threshold: int class RedirectOutput(metaclass=YAMLGetter): |