summary refs log tree commit diff
path: root/synapse/server.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2019-06-26 22:52:02 +0100
committerRichard van der Hoff <richard@matrix.org>2019-06-26 22:52:02 +0100
commit370532210307822eb90dc656449b23df7c6c0dd8 (patch)
tree9d6d316ac8a730ffa5a1a45e02b3bbcf38315eee /synapse/server.py
parentRevert redundant changes to static js (diff)
downloadsynapse-370532210307822eb90dc656449b23df7c6c0dd8.tar.xz
Move all the saml stuff out to a centralised handler
Diffstat (limited to '')
-rw-r--r--synapse/server.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/synapse/server.py b/synapse/server.py

index dbb35c7227..1bc8c08b58 100644 --- a/synapse/server.py +++ b/synapse/server.py
@@ -194,8 +194,8 @@ class HomeServer(object): "sendmail", "registration_handler", "account_validity_handler", + "saml2_handler", "event_client_serializer", - "saml_client", ] REQUIRED_ON_MASTER_STARTUP = ["user_directory_handler", "stats_handler"] @@ -525,13 +525,13 @@ class HomeServer(object): def build_account_validity_handler(self): return AccountValidityHandler(self) - def build_event_client_serializer(self): - return EventClientSerializer(self) + def build_saml2_handler(self): + from synapse.handlers.saml2_handler import Saml2Handler - def build_saml_client(self): - from saml2.client import Saml2Client + return Saml2Handler(self) - return Saml2Client(self.config.saml2_sp_config) + def build_event_client_serializer(self): + return EventClientSerializer(self) def remove_pusher(self, app_id, push_key, user_id): return self.get_pusherpool().remove_pusher(app_id, push_key, user_id)