Skip to content

Commit 93fda87

Browse files
Correct method name
Signed-off-by: Tran Ngoc Nhan <[email protected]>
1 parent 022c03a commit 93fda87

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ val logoutHandler = SecurityContextLogoutHandler()
416416
@PostMapping("/my/logout")
417417
fun performLogout(val authentication: Authentication, val request: HttpServletRequest, val response: HttpServletResponse): String {
418418
// .. perform logout
419-
this.logoutHandler.doLogout(request, response, authentication)
419+
this.logoutHandler.logout(request, response, authentication)
420420
return "redirect:/home"
421421
}
422422
----

0 commit comments

Comments
 (0)