Skip to content

Commit

Permalink
chore: SubscribeController 오타 수정
Browse files Browse the repository at this point in the history
follower List } 가 빠진 부분을 수정하였습니다.
  • Loading branch information
dltjdgh0428 authored Apr 23, 2024
1 parent 8c31868 commit 5ff509a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public CMRespDto<?> unSubscribe(@AuthenticationPrincipal CustomOAuth2User princi
return new CMRespDto<>(HttpStatus.OK, null, "구독 취소 성공!");
}

@GetMapping("api/follower/{pageUserSocialId")
@GetMapping("api/follower/{pageUserSocialId}")
public CMRespDto<?> followerList(@AuthenticationPrincipal CustomOAuth2User principalDetails, @PathVariable Long pageUserSocialId) {
List<SubscribeRespDto> subscribeRespDto = subscribeService.구독자리스트(principalDetails.getSocialId(), pageUserSocialId);
return new CMRespDto<>(HttpStatus.OK, subscribeRespDto, "구독자 리스트(follower) 반환 성공!");
Expand Down

0 comments on commit 5ff509a

Please sign in to comment.