Skip to content

Commit

Permalink
feat: Add unlink Sns method (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinsu4755 authored Nov 21, 2023
1 parent 2e323dd commit ed1f0a3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public ProfileResponseDto getProfile() {
@DeleteMapping("")
@ResponseStatus(HttpStatus.NO_CONTENT)
public void withdrawalUser(@AuthenticationPrincipal Long userId) {
//authService.unlinkSns(userId);
authService.unlinkSns(userId);
try {
final Long coupleId = userService.findUserCoupleId(userId);
coupleService.deleteCouple(coupleId);
Expand Down

0 comments on commit ed1f0a3

Please sign in to comment.