Skip to content

Commit

Permalink
[chore] 엑세스 토큰 접두사 없는 것 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
JeonHaeseung committed Jul 9, 2024
1 parent eaa19e5 commit db24496
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/Ness/Backend/domain/auth/AuthService.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public GetJwtTokenDto reIssuance(Member member, PostRefreshTokenDto postRefreshT
}

final GetJwtTokenDto generateToken = GetJwtTokenDto.builder()
.jwtAccessToken(jwtTokenProvider.generateAccessToken(member.getEmail(), new Date()))
.jwtAccessToken("Bearer " + jwtTokenProvider.generateAccessToken(member.getEmail(), new Date()))
.jwtRefreshToken(postRefreshTokenDto.getJwtRefreshToken())
.build();

Expand Down

0 comments on commit db24496

Please sign in to comment.