summary refs log tree commit diff
path: root/synapse/server.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2019-07-02 12:05:33 +0100
committerRichard van der Hoff <richard@matrix.org>2019-07-02 12:05:33 +0100
commit24e48bc9ffaaef065d24d8d2de9d48fcf1be1ae4 (patch)
treefb41e26098e358f08a30c3af83aad9f06cae3e28 /synapse/server.py
parentMerge branch 'develop' of github.com:matrix-org/synapse into matrix-org-hotfixes (diff)
parenttweak changelog (diff)
downloadsynapse-24e48bc9ffaaef065d24d8d2de9d48fcf1be1ae4.tar.xz
Merge branch 'release-v1.1.0' into matrix-org-hotfixes
Diffstat (limited to 'synapse/server.py')
-rw-r--r--synapse/server.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/synapse/server.py b/synapse/server.py

index a9592c396c..9e28dba2b1 100644 --- a/synapse/server.py +++ b/synapse/server.py
@@ -194,6 +194,7 @@ class HomeServer(object): "sendmail", "registration_handler", "account_validity_handler", + "saml_handler", "event_client_serializer", ] @@ -524,6 +525,11 @@ class HomeServer(object): def build_account_validity_handler(self): return AccountValidityHandler(self) + def build_saml_handler(self): + from synapse.handlers.saml_handler import SamlHandler + + return SamlHandler(self) + def build_event_client_serializer(self): return EventClientSerializer(self)