From 80a5028f3fb04813ab098fc9f89521f1552e8391 Mon Sep 17 00:00:00 2001 From: Marcus Da Coregio Date: Fri, 23 Jun 2023 10:38:04 -0300 Subject: [PATCH] saml2Login filterProcessingUrl should be loginProcessingUrl Closes gh-13417 --- .../ROOT/pages/servlet/saml2/login/authentication.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/ROOT/pages/servlet/saml2/login/authentication.adoc b/docs/modules/ROOT/pages/servlet/saml2/login/authentication.adoc index e1cfdfee18..859b4916e7 100644 --- a/docs/modules/ROOT/pages/servlet/saml2/login/authentication.adoc +++ b/docs/modules/ROOT/pages/servlet/saml2/login/authentication.adoc @@ -56,7 +56,7 @@ Java:: SecurityFilterChain securityFilters(HttpSecurity http) throws Exception { http // ... - .saml2Login((saml2) -> saml2.filterProcessingUrl("/saml2/login/sso")) + .saml2Login((saml2) -> saml2.loginProcessingUrl("/saml2/login/sso")) // ... return http.build(); @@ -72,7 +72,7 @@ fun securityFilters(val http: HttpSecurity): SecurityFilterChain { http { // ... .saml2Login { - filterProcessingUrl = "/saml2/login/sso" + loginProcessingUrl = "/saml2/login/sso" } // ... }