diff options
author | David Baker <dbkr@users.noreply.github.com> | 2016-07-13 11:51:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-13 11:51:46 +0100 |
commit | a37ee2293cdebc5d9f574b5f60c5a09fa1cf07f6 (patch) | |
tree | 0f83acc2ed50aebfcf86a990a50169d8f83e06d3 /synapse/api | |
parent | Merge pull request #914 from matrix-org/markjh/upgrade (diff) | |
parent | be more pythonic (diff) | |
download | synapse-a37ee2293cdebc5d9f574b5f60c5a09fa1cf07f6.tar.xz |
Merge pull request #915 from matrix-org/dbkr/more_requesttokens
Add requestToken endpoints
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/errors.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/api/errors.py b/synapse/api/errors.py index b219b46a4b..0041646858 100644 --- a/synapse/api/errors.py +++ b/synapse/api/errors.py @@ -43,6 +43,7 @@ class Codes(object): EXCLUSIVE = "M_EXCLUSIVE" THREEPID_AUTH_FAILED = "M_THREEPID_AUTH_FAILED" THREEPID_IN_USE = "M_THREEPID_IN_USE" + THREEPID_NOT_FOUND = "M_THREEPID_NOT_FOUND" INVALID_USERNAME = "M_INVALID_USERNAME" SERVER_NOT_TRUSTED = "M_SERVER_NOT_TRUSTED" |