diff options
author | 2021-02-28 22:08:50 -0800 | |
---|---|---|
committer | 2021-02-28 22:08:50 -0800 | |
commit | 25d68457ad7300050f9ea324e7f47a91516ef711 (patch) | |
tree | 6429b8413d1b9f332d663adc588d5c45c39b796e /bot/exts/evergreen/issues.py | |
parent | "colour" to "color". (diff) | |
parent | Merge pull request #604 from python-discord/Add-lancebot-to-staff-channels (diff) |
Merge branch 'master' into modifying-topics
Diffstat (limited to 'bot/exts/evergreen/issues.py')
-rw-r--r-- | bot/exts/evergreen/issues.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bot/exts/evergreen/issues.py b/bot/exts/evergreen/issues.py index 73ebe547..bbcbf611 100644 --- a/bot/exts/evergreen/issues.py +++ b/bot/exts/evergreen/issues.py @@ -24,9 +24,11 @@ if GITHUB_TOKEN := Tokens.github: REQUEST_HEADERS["Authorization"] = f"token {GITHUB_TOKEN}" WHITELISTED_CATEGORIES = ( - Categories.devprojects, Categories.media, Categories.development + Categories.development, Categories.devprojects, Categories.media, Categories.staff +) +WHITELISTED_CHANNELS_ON_MESSAGE = ( + Channels.organisation, Channels.mod_meta, Channels.mod_tools, Channels.staff_voice ) -WHITELISTED_CHANNELS_ON_MESSAGE = (Channels.organisation, Channels.mod_meta, Channels.mod_tools) CODE_BLOCK_RE = re.compile( r"^`([^`\n]+)`" # Inline codeblock |