diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-04-01 08:48:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-01 08:48:00 -0400 |
commit | b9930d24a05e47c36845d8607b12a45eea889be0 (patch) | |
tree | d6411d13b03978cc8b16d4daba04d0016cc0aff0 /synapse/api | |
parent | Allow admins to create aliases when they are not in the room (#7191) (diff) | |
download | synapse-b9930d24a05e47c36845d8607b12a45eea889be0.tar.xz |
Support SAML in the user interactive authentication workflow. (#7102)
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 cc8577552b..fda2c2e5bb 100644 --- a/synapse/api/constants.py +++ b/synapse/api/constants.py @@ -61,6 +61,7 @@ class LoginType(object): MSISDN = "m.login.msisdn" RECAPTCHA = "m.login.recaptcha" TERMS = "m.login.terms" + SSO = "org.matrix.login.sso" DUMMY = "m.login.dummy" # Only for C/S API v1 |