aboutsummaryrefslogtreecommitdiffstats
path: root/pysite/constants.py
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-05-18 16:00:31 +0100
committerGravatar Gareth Coles <[email protected]>2018-05-18 16:00:31 +0100
commite1846928439aa2a7e660d870a083872c415c274d (patch)
treee716f3466ca3914f80b2ca102d5d345658af7bc8 /pysite/constants.py
parentUpdate wiki footer in line with main site (diff)
[Jams] Huge amount of work on code jam admin area
Diffstat (limited to 'pysite/constants.py')
-rw-r--r--pysite/constants.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/pysite/constants.py b/pysite/constants.py
index cb8dad62..c93a09d1 100644
--- a/pysite/constants.py
+++ b/pysite/constants.py
@@ -67,6 +67,14 @@ ERROR_DESCRIPTIONS = {
429: "Please don't send us that many requests."
}
+JAM_STATES = [
+ "planning",
+ "announced",
+ "running",
+ "judging",
+ "finished"
+]
+
# PaperTrail logging
PAPERTRAIL_ADDRESS = environ.get("PAPERTRAIL_ADDRESS") or None
PAPERTRAIL_PORT = int(environ.get("PAPERTRAIL_PORT") or 0)