commit
6e2c9b421b
|
@ -56,7 +56,7 @@ Java::
|
||||||
SecurityFilterChain securityFilters(HttpSecurity http) throws Exception {
|
SecurityFilterChain securityFilters(HttpSecurity http) throws Exception {
|
||||||
http
|
http
|
||||||
// ...
|
// ...
|
||||||
.saml2Login((saml2) -> saml2.filterProcessingUrl("/saml2/login/sso"))
|
.saml2Login((saml2) -> saml2.loginProcessingUrl("/saml2/login/sso"))
|
||||||
// ...
|
// ...
|
||||||
|
|
||||||
return http.build();
|
return http.build();
|
||||||
|
@ -72,7 +72,7 @@ fun securityFilters(val http: HttpSecurity): SecurityFilterChain {
|
||||||
http {
|
http {
|
||||||
// ...
|
// ...
|
||||||
.saml2Login {
|
.saml2Login {
|
||||||
filterProcessingUrl = "/saml2/login/sso"
|
loginProcessingUrl = "/saml2/login/sso"
|
||||||
}
|
}
|
||||||
// ...
|
// ...
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue