mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-07-25 07:15:19 -04:00
Remove deprecated SAML2 callback URL since it does not work. (#9434)
Updates documentation from #9289 and removes a deprecated endpoint which didn't work as expected.
This commit is contained in:
parent
90550f598e
commit
9ee3b9775f
4 changed files with 16 additions and 16 deletions
|
@ -54,11 +54,7 @@ def build_synapse_client_resource_tree(hs: "HomeServer") -> Mapping[str, Resourc
|
|||
if hs.config.saml2_enabled:
|
||||
from synapse.rest.synapse.client.saml2 import SAML2Resource
|
||||
|
||||
res = SAML2Resource(hs)
|
||||
resources["/_synapse/client/saml2"] = res
|
||||
|
||||
# This is also mounted under '/_matrix' for backwards-compatibility.
|
||||
resources["/_matrix/saml2"] = res
|
||||
resources["/_synapse/client/saml2"] = SAML2Resource(hs)
|
||||
|
||||
return resources
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue