Skip to content

Commit

Permalink
fix : 소셜링 조회 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
손명진 authored and 손명진 committed Aug 6, 2024
1 parent f2c4305 commit cc5e2f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,9 +143,9 @@ public BaseResponse<Void> cancelSocialring(
*/
@GetMapping("/inquiry")
public BaseResponse<List<GetSocialringResponse>> getSocialringInquiries(
@RequestParam List<Long> socialringId){
@RequestParam int page){
log.info("[SocialringController.getSocialringInquiries]");
Long memberId = 1007L;
return new BaseResponse<>(socialringService.getSocialringInquiries(1007, socialringId));
return new BaseResponse<>(socialringService.getSocialringInquiries(1007, page));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ public void cancelSocialring(Long memberId, String socialringName) {
/**
* 소셜링 조회
*/
public List<GetSocialringResponse> getSocialringInquiries(Long memberId, int page) {
public List<GetSocialringResponse> getSocialringInquiries(int memberId, int page) {
log.info("[SocialringService.getSocialringInquiries]");

List<Socialring> allSocialrings = socialringRepository.findAllByStatus(BaseStatus.ACTIVE);
Expand Down

0 comments on commit cc5e2f9

Please sign in to comment.