Skip to content

Commit

Permalink
fix: 차단 회원 취소 메서드 파라미터 인자 수정 (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
kimJH47 authored Feb 27, 2024
1 parent 56c441f commit 66fb175
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public void blockMember(@LoginMember Long memberId, @PathVariable("member-id") f
@DeleteMapping("/{member-id}/blocks")
@ResponseStatus(HttpStatus.NO_CONTENT)
public void cancelBlocking(@LoginMember final Long memberId, @PathVariable("member-id") final Long targetId) {
memberService.cancelBlocking(memberId, memberId);
memberService.cancelBlocking(memberId, targetId);
}

@GetMapping("/{member-id}/blocks")
Expand Down

0 comments on commit 66fb175

Please sign in to comment.