providers/saml: fix mismatched SAML SLO Urls (#4655)

* Fix SLO URL

Signed-off-by: sdimovv <36302090+sdimovv@users.noreply.github.com>

* Fixed SAML SLO URLs

* Revert "Fix SLO URL"

This reverts commit 664051934b.

---------

Signed-off-by: sdimovv <36302090+sdimovv@users.noreply.github.com>
This commit is contained in:
sdimovv 2023-02-10 19:30:38 +00:00 committed by GitHub
parent f28834ffad
commit 10b9878f03
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -23,12 +23,12 @@ urlpatterns = [
),
# SLO Bindings
path(
"<slug:application_slug>/slo/redirect/",
"<slug:application_slug>/slo/binding/redirect/",
slo.SAMLSLOBindingRedirectView.as_view(),
name="slo-redirect",
),
path(
"<slug:application_slug>/slo/post/",
"<slug:application_slug>/slo/binding/post/",
slo.SAMLSLOBindingPOSTView.as_view(),
name="slo-post",
),