Compare commits
17 커밋
fix/loggin
...
main
| 작성자 | SHA1 | 날짜 | |
|---|---|---|---|
| f96e082ae2 | |||
| 72d77899ab | |||
| 299d8bd333 | |||
| 990e69c7db | |||
| 8535d5e765 | |||
| 983de6a71a | |||
| f558e43810 | |||
| b39b0df6b9 | |||
| f62751229e | |||
| 4c837b0ce4 | |||
| a5f58970a9 | |||
| 30f0b28460 | |||
| c0e33e11d7 | |||
| e92b0e15ef | |||
| 57b11774eb | |||
| 3e918baf74 | |||
| acf18221ae |
@ -227,9 +227,11 @@ public class AuthController {
|
||||
|
||||
private void clearSessionCookies(HttpServletResponse response) {
|
||||
response.addHeader(HttpHeaders.SET_COOKIE,
|
||||
ResponseCookie.from("GC_SESSION", "").path("/").maxAge(0).build().toString());
|
||||
ResponseCookie.from("GC_SESSION", "")
|
||||
.path("/").httpOnly(true).secure(true).sameSite("Lax").maxAge(0).build().toString());
|
||||
response.addHeader(HttpHeaders.SET_COOKIE,
|
||||
ResponseCookie.from("gc_proxy_auth", "").path("/").maxAge(0).build().toString());
|
||||
ResponseCookie.from("gc_proxy_auth", "")
|
||||
.path("/").httpOnly(true).secure(true).sameSite("Lax").maxAge(0).build().toString());
|
||||
}
|
||||
|
||||
private String getCookieValue(HttpServletRequest request, String name) {
|
||||
|
||||
불러오는 중...
Reference in New Issue
Block a user