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:
parent
f28834ffad
commit
10b9878f03
|
@ -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",
|
||||
),
|
||||
|
|
Reference in New Issue