summary refs log tree commit diff
path: root/synapse
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2021-02-23 12:57:37 -0500
committerGitHub <noreply@github.com>2021-02-23 12:57:37 -0500
commit7292b7c0ebf2dcc971349e0bd17dc041a49f94f4 (patch)
treef3ccadf9d21c58558cb404fcf1228b16b98361b9 /synapse
parentUpdate release date. (diff)
downloadsynapse-7292b7c0ebf2dcc971349e0bd17dc041a49f94f4.tar.xz
Add back the deprecated SAML endpoint. (#9474)
Diffstat (limited to 'synapse')
-rw-r--r--synapse/rest/synapse/client/__init__.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/synapse/rest/synapse/client/__init__.py b/synapse/rest/synapse/client/__init__.py
index 8588b6d271..9eeb970580 100644
--- a/synapse/rest/synapse/client/__init__.py
+++ b/synapse/rest/synapse/client/__init__.py
@@ -54,7 +54,12 @@ def build_synapse_client_resource_tree(hs: "HomeServer") -> Mapping[str, Resourc
     if hs.config.saml2_enabled:
         from synapse.rest.synapse.client.saml2 import SAML2Resource
 
-        resources["/_synapse/client/saml2"] = SAML2Resource(hs)
+        res = SAML2Resource(hs)
+        resources["/_synapse/client/saml2"] = res
+
+        # This is also mounted under '/_matrix' for backwards-compatibility.
+        # To be removed in Synapse v1.32.0.
+        resources["/_matrix/saml2"] = res
 
     return resources