0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-29 07:58:19 +02:00

Add specific error code for invalid user names.

This commit is contained in:
David Baker 2016-01-14 17:21:04 +00:00
parent a50013fd99
commit 3f8db3d597
2 changed files with 3 additions and 1 deletions

View file

@ -42,6 +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"
class CodeMessageException(RuntimeError):

View file

@ -53,7 +53,8 @@ class RegistrationHandler(BaseHandler):
raise SynapseError(
400,
"User ID must only contain characters which do not"
" require URL encoding."
" require URL encoding.",
Codes.INVALID_USER_NAME
)
user = UserID(localpart, self.hs.hostname)