diff options
author | Matthew Hodgson <matthew@matrix.org> | 2018-01-19 00:19:58 +0000 |
---|---|---|
committer | Matthew Hodgson <matthew@matrix.org> | 2018-01-19 00:19:58 +0000 |
commit | 28a6ccb49c57cc686761b9e674b501b3b402e616 (patch) | |
tree | 66e61588c844e31d868a6155b1393f01b3b3c844 /synapse/api | |
parent | Merge pull request #2805 from matrix-org/rav/log_state_res (diff) | |
download | synapse-28a6ccb49c57cc686761b9e674b501b3b402e616.tar.xz |
add registrations_require_3pid
lets homeservers specify a whitelist for 3PIDs that users are allowed to associate with. Typically useful for stopping people from registering with non-work emails
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 79b35b3e7c..46b0d7b34c 100644 --- a/synapse/api/errors.py +++ b/synapse/api/errors.py @@ -46,6 +46,7 @@ class Codes(object): THREEPID_AUTH_FAILED = "M_THREEPID_AUTH_FAILED" THREEPID_IN_USE = "M_THREEPID_IN_USE" THREEPID_NOT_FOUND = "M_THREEPID_NOT_FOUND" + THREEPID_DENIED = "M_THREEPID_DENIED" INVALID_USERNAME = "M_INVALID_USERNAME" SERVER_NOT_TRUSTED = "M_SERVER_NOT_TRUSTED" |