diff options
author | Erik Johnston <erik@matrix.org> | 2015-03-18 11:38:52 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-03-18 11:38:52 +0000 |
commit | ed4d44d833f671758456be421660029aee3778cd (patch) | |
tree | 563bb423551f8c264907b06cac6053f44cbfabf6 /synapse/api | |
parent | Clean out event_forward_extremities table when the server rejoins the room (diff) | |
parent | Factor out user id validation checks (diff) | |
download | synapse-ed4d44d833f671758456be421660029aee3778cd.tar.xz |
Merge pull request #109 from matrix-org/default_registration
Disable registration by default. Add script to register new users.
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/constants.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py index 420f963d91..b16bf4247d 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py @@ -60,6 +60,7 @@ class LoginType(object): EMAIL_IDENTITY = u"m.login.email.identity" RECAPTCHA = u"m.login.recaptcha" APPLICATION_SERVICE = u"m.login.application_service" + SHARED_SECRET = u"org.matrix.login.shared_secret" class EventTypes(object): |