Skip to content

Commit

Permalink
[Refactor] #294 - Refresh Token 삭제 로직 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
its-sky committed Jul 2, 2024
1 parent f92bc62 commit 4cd2b95
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void withdrawal(final Long userId) {
.orElseThrow(() -> new NotFoundException(NOT_FOUND_USER));

user.setDeleteAt();
logout(userId);
jwtTokenProvider.deleteRefreshToken(userId);
}

public void modifyProfile(final Long userId, final UserInfoRequest request) {
Expand Down

0 comments on commit 4cd2b95

Please sign in to comment.