aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/constants.py
diff options
context:
space:
mode:
authorGravatar Leon Sandøy <[email protected]>2018-07-29 09:53:01 +0000
committerGravatar Leon Sandøy <[email protected]>2018-07-29 09:53:01 +0000
commitc3cbadf64c1d568e957274e331241691de356f7f (patch)
tree3c41f029f67adda015590ed6553b1dbf30c2aabf /pysite/constants.py
parentFix typo in infractions table definition (diff)
parentAddressing gdude comments (diff)
Merge branch 'clean_command' into 'master'
Clean command API and frontend See merge request python-discord/projects/site!26
Diffstat (limited to 'pysite/constants.py')
-rw-r--r--pysite/constants.py48
1 files changed, 39 insertions, 9 deletions
diff --git a/pysite/constants.py b/pysite/constants.py
index 69c73492..7d8dbf6e 100644
--- a/pysite/constants.py
+++ b/pysite/constants.py
@@ -31,17 +31,27 @@ class BotEventTypes(Enum):
DEBUG_MODE = "FLASK_DEBUG" in environ
# All snowflakes should be strings as RethinkDB rounds them as ints
-OWNER_ROLE = "267627879762755584"
-ADMIN_ROLE = "267628507062992896"
-MODERATOR_ROLE = "267629731250176001"
+ADMIN_BOTS_ROLE = "270988689419665409"
+ADMINS_ROLE = "267628507062992896"
+ANNOUNCEMENTS_ROLE = "463658397560995840"
+BOTS_ROLE = "277546923144249364"
+CODE_JAM_CHAMPIONS_ROLE = "430492892331769857"
+CONTRIBS_ROLE = "295488872404484098"
DEVOPS_ROLE = "409416496733880320"
-HELPER_ROLE = "267630620367257601"
-CONTRIB_ROLE = "295488872404484098"
+DEVELOPERS_ROLE = "352427296948486144"
+HELPERS_ROLE = "267630620367257601"
JAMMERS_ROLE = "423054537079783434"
-
-ALL_STAFF_ROLES = (OWNER_ROLE, ADMIN_ROLE, MODERATOR_ROLE, DEVOPS_ROLE)
-TABLE_MANAGER_ROLES = (OWNER_ROLE, ADMIN_ROLE, DEVOPS_ROLE)
-EDITOR_ROLES = ALL_STAFF_ROLES + (HELPER_ROLE, CONTRIB_ROLE)
+MODERATORS_ROLE = "267629731250176001"
+MUTED_ROLE = "277914926603829249"
+OWNERS_ROLE = "267627879762755584"
+PARTNERS_ROLE = "323426753857191936"
+PYTHON_ROLE = "458226699344019457"
+STREAMERS_ROLE = "462650825978806274"
+SUBREDDIT_MOD_ROLE = "458226413825294336"
+
+ALL_STAFF_ROLES = (OWNERS_ROLE, ADMINS_ROLE, MODERATORS_ROLE, DEVOPS_ROLE)
+TABLE_MANAGER_ROLES = (OWNERS_ROLE, ADMINS_ROLE, DEVOPS_ROLE)
+EDITOR_ROLES = ALL_STAFF_ROLES + (HELPERS_ROLE, CONTRIBS_ROLE)
SERVER_ID = 267624335836053506
@@ -101,6 +111,26 @@ JAM_QUESTION_TYPES = [
"slider"
]
+# Server role colors
+ROLE_COLORS = {
+ ADMIN_BOTS_ROLE: "#6f9fed",
+ ADMINS_ROLE: "#e76e6c",
+ BOTS_ROLE: "#6f9fed",
+ CODE_JAM_CHAMPIONS_ROLE: "#b108b4",
+ CONTRIBS_ROLE: "#55cc6c",
+ DEVOPS_ROLE: "#a1d1ff",
+ DEVELOPERS_ROLE: "#fcfcfc",
+ HELPERS_ROLE: "#e0b000",
+ JAMMERS_ROLE: "#258639",
+ MODERATORS_ROLE: "#ce3c42",
+ MUTED_ROLE: "#fcfcfc",
+ OWNERS_ROLE: "#ffa3a1",
+ PARTNERS_ROLE: "#b66fed",
+ PYTHON_ROLE: "#6f9fed",
+ STREAMERS_ROLE: "#833cba",
+ SUBREDDIT_MOD_ROLE: "#d897ed",
+}
+
# CSRF
CSRF = CSRFProtect()