Skip to content

Commit

Permalink
refactor(AttendeeController): 상수 명을 SAME_SITE_SETTING 으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
seokmyungham committed Aug 2, 2024
1 parent cfffb13 commit 66bb647
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
public class AttendeeController {

private static final String ACCESS_TOKEN = "ACCESS_TOKEN";
private static final String NONE = "None";
private static final String SAME_SITE_SETTING = "None";

private final AttendeeService attendeeService;

Expand All @@ -36,7 +36,7 @@ private String createCookie(String value, String path) {
.httpOnly(true)
.secure(true)
.path(path)
.sameSite(NONE)
.sameSite(SAME_SITE_SETTING)
.build()
.toString();
}
Expand Down

0 comments on commit 66bb647

Please sign in to comment.