File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
docs/modules/ROOT/pages/servlet/authentication Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -38,13 +38,13 @@ public SecurityFilterChain filterChain(HttpSecurity http) {
38
38
-----
39
39
open fun filterChain(http: HttpSecurity): SecurityFilterChain {
40
40
http {
41
- logout {
42
- logoutUrl = "/my/logout" // <1 >
43
- logoutSuccessUrl = "/my/index" // <2 >
44
- logoutSuccessHandler = customLogoutSuccessHandler // <3 >
45
- invalidateHttpSession = true // <4 >
46
- addLogoutHandler(logoutHandler) // <5 >
47
- deleteCookies(cookieNamesToClear) // <6 >
41
+ logout { // <1>
42
+ logoutUrl = "/my/logout" // <2 >
43
+ logoutSuccessUrl = "/my/index" // <3 >
44
+ logoutSuccessHandler = customLogoutSuccessHandler // <4 >
45
+ invalidateHttpSession = true // <5 >
46
+ addLogoutHandler(logoutHandler) // <6 >
47
+ deleteCookies(cookieNamesToClear) // <7 >
48
48
}
49
49
}
50
50
// ...
You can’t perform that action at this time.
0 commit comments