Skip to content

Commit 290fcca

Browse files
committed
fix(api-springboot): refresh cookie path 수정
1 parent f33000a commit 290fcca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/api-springboot/src/main/kotlin/com/flowly/api/auth/service/RefreshTokenCookieService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class RefreshTokenCookieService(
1212
) {
1313
companion object {
1414
const val REFRESH_TOKEN_COOKIE_NAME = "refresh_token"
15-
private const val COOKIE_PATH = "/auth"
15+
private const val COOKIE_PATH = "/"
1616
private const val COOKIE_MAX_AGE_SECONDS = 7 * 24 * 60 * 60
1717
}
1818

0 commit comments

Comments
 (0)