diff options
author | 2019-02-05 11:15:03 -0500 | |
---|---|---|
committer | 2019-02-05 11:15:03 -0500 | |
commit | bd6f42ab1a5810be81e79de7223ea0067097e09e (patch) | |
tree | 2186a321e7f441fd73da2c924335ac605d087d65 /bot | |
parent | Merge pull request #95 from python-discord/add-valentines-season (diff) |
Add Lovefest configuration, update project documents
Add Lovefest role & channel IDs to bot constants
Update environment variable name for seasonalbot (was hacktoberbot)
Update Contributor doc to reference pipenv guide rather than the
deprecated Seasonalbot GH wiki
Diffstat (limited to 'bot')
-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 4e09b448..9cb425f0 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -72,6 +72,11 @@ class Emojis: check = "\u2611" +class Lovefest: + channel_id = int(environ.get("LOVEFEST_CHANNEL_ID", 542272993192050698)) + role_id = int(environ.get("LOVEFEST_ROLE_ID", 542313670223331329)) + + class Hacktoberfest(NamedTuple): channel_id = 498804484324196362 voice_id = 514420006474219521 |