summary refs log tree commit diff
path: root/synapse/api/errors.py
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2015-04-23 13:23:44 +0100
committerDavid Baker <dave@matrix.org>2015-04-23 13:23:44 +0100
commita2c10d37d7052a1ab6cf7188c3b4d763850e1561 (patch)
tree0ede78da1d5afe187e16f1edf97c14c566d2843f /synapse/api/errors.py
parentRemove now-redundant email config (diff)
downloadsynapse-a2c10d37d7052a1ab6cf7188c3b4d763850e1561.tar.xz
Add an error code to 'missing token' response.
Diffstat (limited to 'synapse/api/errors.py')
-rw-r--r--synapse/api/errors.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/api/errors.py b/synapse/api/errors.py
index eddd889778..109547b3ce 100644
--- a/synapse/api/errors.py
+++ b/synapse/api/errors.py
@@ -31,6 +31,7 @@ class Codes(object):
     BAD_PAGINATION = "M_BAD_PAGINATION"
     UNKNOWN = "M_UNKNOWN"
     NOT_FOUND = "M_NOT_FOUND"
+    MISSING_TOKEN = "M_MISSING_TOKEN"
     UNKNOWN_TOKEN = "M_UNKNOWN_TOKEN"
     LIMIT_EXCEEDED = "M_LIMIT_EXCEEDED"
     CAPTCHA_NEEDED = "M_CAPTCHA_NEEDED"