Skip to content

Commit

Permalink
merge: 파라미터 변수명 수정 #97
Browse files Browse the repository at this point in the history
[FIX] 파라미터 변수명 수정 #97
  • Loading branch information
sjk4618 authored Jan 20, 2025
2 parents 3b10b6f + f85bd26 commit 372349a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public ResponseEntity<BaseResponse<?>> getCakeSelect(
@UserId final Long userId,
@PathVariable(value = "cakeId") final long cakeId,
@RequestParam(value = "dayCategory") final DayCategory dayCategory,
@RequestParam(value = "theme") final ThemeName themeName
@RequestParam(value = "themeName") final ThemeName themeName
) {
return ApiResponseUtil.success(
SuccessCode.OK,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public void setRefreshCookie(final String refreshToken, final HttpServletRespons
.sameSite("None")
.httpOnly(true)
.build();
response.setHeader("Set-Cookie", refreshCookie.toString());
response.addHeader("Set-Cookie", refreshCookie.toString());
}

public UserInfoRes getUserInfo(final Long userId) {
Expand Down

0 comments on commit 372349a

Please sign in to comment.