Skip to content

Commit

Permalink
hotfix: 서브 도메인 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
parksey committed Dec 3, 2023
1 parent 42a2fa8 commit e89c22d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/moabam/global/common/util/CookieUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public static Cookie tokenCookie(String name, String value, long expireTime, Str
cookie.setSecure(true);
cookie.setHttpOnly(true);
cookie.setPath("/");
cookie.setDomain(domain);
cookie.setDomain("moabam.com");
cookie.setMaxAge((int)expireTime);
cookie.setAttribute("SameSite", "None");

Expand All @@ -24,7 +24,7 @@ public static Cookie typeCookie(String value, long expireTime, String domain) {
cookie.setSecure(true);
cookie.setHttpOnly(true);
cookie.setPath("/");
cookie.setDomain(domain);
cookie.setDomain("moabam.com");
cookie.setMaxAge((int)expireTime);
cookie.setAttribute("SameSite", "None");

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/static/docs/coupon.html
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ <h4 id="_응답_7" class="discrete">응답</h4>
<div id="footer">
<div id="footer-text">
Version 0.0.1-SNAPSHOT<br>
Last updated 2023-12-03 13:34:31 +0900
Last updated 2023-12-03 18:19:36 +0900
</div>
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/static/docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ <h4 id="_상태코드httpstatus"><a class="link" href="#_상태코드httpstatus"
<div id="footer">
<div id="footer-text">
Version 0.0.1-SNAPSHOT<br>
Last updated 2023-12-03 13:34:31 +0900
Last updated 2023-12-03 18:19:36 +0900
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.18.3/highlight.min.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/static/docs/notification.html
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ <h4 id="_응답_2" class="discrete">응답</h4>
<div id="footer">
<div id="footer-text">
Version 0.0.1-SNAPSHOT<br>
Last updated 2023-12-03 13:34:31 +0900
Last updated 2023-12-03 18:19:36 +0900
</div>
</div>
</body>
Expand Down

0 comments on commit e89c22d

Please sign in to comment.