aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/constants.py1
-rw-r--r--config-default.yml5
2 files changed, 5 insertions, 1 deletions
diff --git a/bot/constants.py b/bot/constants.py
index 7a0760eef..042e48a8b 100644
--- a/bot/constants.py
+++ b/bot/constants.py
@@ -545,6 +545,7 @@ class HelpChannels(metaclass=YAMLGetter):
notify: bool
notify_channel: int
notify_minutes: int
+ notify_roles: List[int]
class Mention(metaclass=YAMLGetter):
diff --git a/config-default.yml b/config-default.yml
index b23271899..22c05853c 100644
--- a/config-default.yml
+++ b/config-default.yml
@@ -532,7 +532,6 @@ help_channels:
# Prefix for help channel names
name_prefix: 'help-'
-
# Notify if more available channels are needed but there are no more dormant ones
notify: true
@@ -542,6 +541,10 @@ help_channels:
# Minimum interval between helper notifications
notify_minutes: 15
+ # Mention these roles in notifications
+ notify_roles:
+ - *HELPERS_ROLE
+
redirect_output:
delete_invocation: true
delete_delay: 15