Skip to content

Commit

Permalink
Merge pull request #124 from Genti2024/fix/oauth-unlink
Browse files Browse the repository at this point in the history
Fix: #116 apple unlink 수정
  • Loading branch information
LeeJae-H authored Aug 17, 2024
2 parents ef0354a + 3d39a6c commit a970360
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ public Boolean delete(Long userId) {

switch (oauthPlatform) {
case KAKAO -> kakaoOauthStrategy.unlink(foundUser.getSocialId());
case APPLE -> appleOauthStrategy.unlink(foundUser.getSocialId());
case APPLE -> appleOauthStrategy.unlink(foundUser.getAppleRefreshToken());
}
userRepository.delete(foundUser);
return true;
Expand Down

0 comments on commit a970360

Please sign in to comment.