summary refs log tree commit diff
path: root/synapse/api/constants.py
diff options
context:
space:
mode:
authorKegan Dougal <kegan@matrix.org>2014-09-15 10:23:20 +0100
committerKegan Dougal <kegan@matrix.org>2014-09-15 10:23:20 +0100
commit34878bc26a2ed4b796412830a4e1bf9edddc0089 (patch)
tree8f6e48f86ecaf01fb422442583c65745e018d243 /synapse/api/constants.py
parentMerge branch 'develop' of github.com:matrix-org/synapse into registration-api... (diff)
downloadsynapse-34878bc26a2ed4b796412830a4e1bf9edddc0089.tar.xz
Added LoginType constants. Created general structure for processing registrations.
Diffstat (limited to 'synapse/api/constants.py')
-rw-r--r--synapse/api/constants.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/synapse/api/constants.py b/synapse/api/constants.py
index fcef062fc9..618d3d7577 100644
--- a/synapse/api/constants.py
+++ b/synapse/api/constants.py
@@ -50,3 +50,12 @@ class JoinRules(object):
     KNOCK = u"knock"
     INVITE = u"invite"
     PRIVATE = u"private"
+
+
+class LoginType(object):
+    PASSWORD = u"m.login.password"
+    OAUTH = u"m.login.oauth2"
+    EMAIL_CODE = u"m.login.email.code"
+    EMAIL_URL = u"m.login.email.url"
+    EMAIL_IDENTITY = u"m.login.email.identity"
+    RECAPTCHA = u"m.login.recaptcha"
\ No newline at end of file