diff options
author | Richard van der Hoff <richard@matrix.org> | 2019-06-27 00:37:41 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2019-06-27 00:37:41 +0100 |
commit | 28db0ae5377ca8e7133957008ba35b49432636ee (patch) | |
tree | 458ab56c6bb5191223c125096a7b37eaac3519cf /synapse/server.py | |
parent | update sample config (diff) | |
download | synapse-28db0ae5377ca8e7133957008ba35b49432636ee.tar.xz |
cleanups
Diffstat (limited to 'synapse/server.py')
-rw-r--r-- | synapse/server.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/synapse/server.py b/synapse/server.py index 1bc8c08b58..9e28dba2b1 100644 --- a/synapse/server.py +++ b/synapse/server.py @@ -194,7 +194,7 @@ class HomeServer(object): "sendmail", "registration_handler", "account_validity_handler", - "saml2_handler", + "saml_handler", "event_client_serializer", ] @@ -525,10 +525,10 @@ class HomeServer(object): def build_account_validity_handler(self): return AccountValidityHandler(self) - def build_saml2_handler(self): - from synapse.handlers.saml2_handler import Saml2Handler + def build_saml_handler(self): + from synapse.handlers.saml_handler import SamlHandler - return Saml2Handler(self) + return SamlHandler(self) def build_event_client_serializer(self): return EventClientSerializer(self) |