summary refs log tree commit diff
path: root/synapse/api
diff options
context:
space:
mode:
authorDavid Baker <dave@matrix.org>2016-01-15 10:06:34 +0000
committerDavid Baker <dave@matrix.org>2016-01-15 10:06:34 +0000
commit5819b7a78ccbb07914d9c03ab426df084ba86f2c (patch)
tree99435a203ac323ee4b59b57677b79ce9d205d440 /synapse/api
parentAdd specific error code for invalid user names. (diff)
downloadsynapse-5819b7a78ccbb07914d9c03ab426df084ba86f2c.tar.xz
M_INVALID_USERNAME to be consistent with the parameter name
Diffstat (limited to 'synapse/api')
-rw-r--r--synapse/api/errors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/api/errors.py b/synapse/api/errors.py
index e6d32acced..ce0fc53668 100644
--- a/synapse/api/errors.py
+++ b/synapse/api/errors.py
@@ -42,7 +42,7 @@ class Codes(object):
     EXCLUSIVE = "M_EXCLUSIVE"
     THREEPID_AUTH_FAILED = "M_THREEPID_AUTH_FAILED"
     THREEPID_IN_USE = "THREEPID_IN_USE"
-    INVALID_USER_NAME = "M_INVALID_USER_NAME"
+    INVALID_USERNAME = "M_INVALID_USERNAME"
 
 
 class CodeMessageException(RuntimeError):