diff options
| author | 2020-02-12 17:14:49 -0500 | |
|---|---|---|
| committer | 2020-02-12 17:14:49 -0500 | |
| commit | ee930bdde1e99cb9e2880e86dd647a42e90d2580 (patch) | |
| tree | 361563849a7a5336d9c733e43de2eb2f363165f9 /bot/cogs/reminders.py | |
| parent | Add reminder target datetime to footer of confirmation message (diff) | |
Expand reminder channel whitelist to dev-contrib for non-staff
Add channel ID to config files
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/reminders.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/reminders.py b/bot/cogs/reminders.py index 715c2d89b..57a74270a 100644 --- a/bot/cogs/reminders.py +++ b/bot/cogs/reminders.py @@ -20,7 +20,7 @@ from bot.utils.time import humanize_delta, wait_until log = logging.getLogger(__name__) -WHITELISTED_CHANNELS = (Channels.bot,) +WHITELISTED_CHANNELS = (Channels.bot, Channels.devcontrib) MAXIMUM_REMINDERS = 5 |