Skip to content

Commit

Permalink
Merge pull request #57 from dionisos198/bug/#42-fix-undefined-refresh…
Browse files Browse the repository at this point in the history
…token

Bug: Cookie value (#42)
  • Loading branch information
dionisos198 authored Jun 28, 2024
2 parents a0b472f + 6dd99fa commit 4383d5e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public ResponseEntity<Void> logout(@RequestHeader("accessToken") final String ac
@ApiResponse(responseCode = "400",description = "refreshToken 이 만료되거나 틀렸을 때")
})
public ResponseEntity<BaseResponse<AccessTokenResponseDto>> reIssue(@RequestHeader("accessToken") final String accessToken,
@RequestHeader("refreshToken") final String refreshToken){
@CookieValue("refreshToken") final String refreshToken){


TokenReIssueResponseDto tokenReIssueResponseDto = authService.reIssue(accessToken,refreshToken);
Expand Down

0 comments on commit 4383d5e

Please sign in to comment.