Skip to content

Commit b7d6fb9

Browse files
committed
MOSU refactor: set secure flag to true for development cookies
1 parent 3bc3eef commit b7d6fb9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/life/mosu/mosuserver/global/util/CookieBuilderUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public static String createLocalCookieString(String name, String value, Long max
6565
public static ResponseCookie createDevelopResponseCookie(String name, String value,
6666
Long maxAge) {
6767
return createBaseResponseCookieBuilder(name, value, maxAge)
68-
.secure(false)
68+
.secure(true)
6969
.domain(".mosuedu.com")
7070
.sameSite("Strict")
7171
.build();

0 commit comments

Comments
 (0)