summary refs log tree commit diff
path: root/synapse/handlers/saml_handler.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2019-06-27 00:37:41 +0100
committerRichard van der Hoff <richard@matrix.org>2019-06-27 00:37:41 +0100
commit28db0ae5377ca8e7133957008ba35b49432636ee (patch)
tree458ab56c6bb5191223c125096a7b37eaac3519cf /synapse/handlers/saml_handler.py
parentupdate sample config (diff)
downloadsynapse-28db0ae5377ca8e7133957008ba35b49432636ee.tar.xz
cleanups
Diffstat (limited to '')
-rw-r--r--synapse/handlers/saml_handler.py (renamed from synapse/handlers/saml2_handler.py)2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/saml2_handler.py b/synapse/handlers/saml_handler.py

index b06d3f172e..03a0ac4384 100644 --- a/synapse/handlers/saml2_handler.py +++ b/synapse/handlers/saml_handler.py
@@ -25,7 +25,7 @@ from synapse.rest.client.v1.login import SSOAuthHandler logger = logging.getLogger(__name__) -class Saml2Handler: +class SamlHandler: def __init__(self, hs): self._saml_client = Saml2Client(hs.config.saml2_sp_config) self._sso_auth_handler = SSOAuthHandler(hs)