aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/constants.py
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-05-31 14:45:03 +0100
committerGravatar Gareth Coles <[email protected]>2018-05-31 14:45:03 +0100
commitcddc4184e3c24c65e74286ea0c232b037bd88071 (patch)
tree5ab091b566e13ad1b98b0a087995e6c5b31f5104 /pysite/constants.py
parentUpdate privacy policy and related migrations (diff)
[RMQ] Finish events implementation; add jammer role to constants
Diffstat (limited to 'pysite/constants.py')
-rw-r--r--pysite/constants.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pysite/constants.py b/pysite/constants.py
index bc2a3aa4..5bdb025f 100644
--- a/pysite/constants.py
+++ b/pysite/constants.py
@@ -23,7 +23,7 @@ class BotEventTypes(Enum):
send_message = "send_message"
send_embed = "send_embed"
- add_role = "ensure_role"
+ add_role = "add_role"
remove_role = "remove_role"
@@ -36,6 +36,7 @@ MODERATOR_ROLE = "267629731250176001"
DEVOPS_ROLE = "409416496733880320"
HELPER_ROLE = "267630620367257601"
CONTRIB_ROLE = "295488872404484098"
+JAMMERS_ROLE = "423054537079783434 "
ALL_STAFF_ROLES = (OWNER_ROLE, ADMIN_ROLE, MODERATOR_ROLE, DEVOPS_ROLE)
TABLE_MANAGER_ROLES = (OWNER_ROLE, ADMIN_ROLE, DEVOPS_ROLE)