Compare commits
No commits in common. "main" and "fix/logging-guideline" have entirely different histories.
main
...
fix/loggin
@ -227,11 +227,9 @@ public class AuthController {
|
|||||||
|
|
||||||
private void clearSessionCookies(HttpServletResponse response) {
|
private void clearSessionCookies(HttpServletResponse response) {
|
||||||
response.addHeader(HttpHeaders.SET_COOKIE,
|
response.addHeader(HttpHeaders.SET_COOKIE,
|
||||||
ResponseCookie.from("GC_SESSION", "")
|
ResponseCookie.from("GC_SESSION", "").path("/").maxAge(0).build().toString());
|
||||||
.path("/").httpOnly(true).secure(true).sameSite("Lax").maxAge(0).build().toString());
|
|
||||||
response.addHeader(HttpHeaders.SET_COOKIE,
|
response.addHeader(HttpHeaders.SET_COOKIE,
|
||||||
ResponseCookie.from("gc_proxy_auth", "")
|
ResponseCookie.from("gc_proxy_auth", "").path("/").maxAge(0).build().toString());
|
||||||
.path("/").httpOnly(true).secure(true).sameSite("Lax").maxAge(0).build().toString());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private String getCookieValue(HttpServletRequest request, String name) {
|
private String getCookieValue(HttpServletRequest request, String name) {
|
||||||
|
|||||||
불러오는 중...
Reference in New Issue
Block a user