diff options
author | Kegan Dougal <kegan@matrix.org> | 2015-02-05 17:29:27 +0000 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2015-02-05 17:29:27 +0000 |
commit | 0227618d3c3bea6c85a922d5605f526719573121 (patch) | |
tree | 287ba393a80363d6680d090c9b9401362ff4a4fa /synapse/api | |
parent | Dependency inject ApplicationServiceApi when creating ApplicationServicesHand... (diff) | |
download | synapse-0227618d3c3bea6c85a922d5605f526719573121.tar.xz |
Add m.login.application_service registration procedure.
This allows known application services to register any user ID under their own user namespace(s).
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 0d3fc629af..420f963d91 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py @@ -59,6 +59,7 @@ class LoginType(object): EMAIL_URL = u"m.login.email.url" EMAIL_IDENTITY = u"m.login.email.identity" RECAPTCHA = u"m.login.recaptcha" + APPLICATION_SERVICE = u"m.login.application_service" class EventTypes(object): |