diff options
author | 2018-05-18 16:00:31 +0100 | |
---|---|---|
committer | 2018-05-18 16:00:31 +0100 | |
commit | e1846928439aa2a7e660d870a083872c415c274d (patch) | |
tree | e716f3466ca3914f80b2ca102d5d345658af7bc8 /pysite/constants.py | |
parent | Update 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.py | 8 |
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) |