diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-05-15 12:26:02 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-15 12:26:02 -0400 |
commit | a3cf36f76ed41222241393adf608d0e640bb51b8 (patch) | |
tree | 6ab73758fc073c13e9f4b94d399a49521ebb9477 /synapse/handlers/auth.py | |
parent | Add a worker store for search insertion. (#7516) (diff) | |
download | synapse-a3cf36f76ed41222241393adf608d0e640bb51b8.tar.xz |
Support UI Authentication for OpenID Connect accounts (#7457)
Diffstat (limited to 'synapse/handlers/auth.py')
-rw-r--r-- | synapse/handlers/auth.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/synapse/handlers/auth.py b/synapse/handlers/auth.py index 524281d2f1..75b39e878c 100644 --- a/synapse/handlers/auth.py +++ b/synapse/handlers/auth.py @@ -80,7 +80,9 @@ class AuthHandler(BaseHandler): self.hs = hs # FIXME better possibility to access registrationHandler later? self.macaroon_gen = hs.get_macaroon_generator() self._password_enabled = hs.config.password_enabled - self._sso_enabled = hs.config.saml2_enabled or hs.config.cas_enabled + self._sso_enabled = ( + hs.config.cas_enabled or hs.config.saml2_enabled or hs.config.oidc_enabled + ) # we keep this as a list despite the O(N^2) implication so that we can # keep PASSWORD first and avoid confusing clients which pick the first |