Skip to content

Commit 568277f

Browse files
he1ex-tGSteve Riesenberg
authored andcommitted
Mistake in Kotlin code representation is fixed
1 parent 0f58620 commit 568277f

File tree

1 file changed

+7
-7
lines changed
  • docs/modules/ROOT/pages/servlet/authentication

1 file changed

+7
-7
lines changed

docs/modules/ROOT/pages/servlet/authentication/logout.adoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ public SecurityFilterChain filterChain(HttpSecurity http) {
3838
-----
3939
open fun filterChain(http: HttpSecurity): SecurityFilterChain {
4040
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>
4848
}
4949
}
5050
// ...

0 commit comments

Comments
 (0)