Skip to content

Commit

Permalink
feat : 모든 요청 다 받도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jsilver01 committed Aug 6, 2024
1 parent fecc677 commit 2b1e978
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public BaseResponse<List<GetCrewInquiryResponse>> getCrewInquiries(@RequestHeade
@RequestParam int page){
log.info("[CrewController.getCrewInquiries]");
Long memberId = 1007L;
return new BaseResponse<>(crewService.getCrewInquiries(memberId,page));
return new BaseResponse<>(crewService.getCrewInquiries(1007,page));
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,6 @@ public BaseResponse<List<GetSocialringResponse>> getSocialringInquiries(
@RequestParam List<Long> socialringId){
log.info("[SocialringController.getSocialringInquiries]");
Long memberId = 1007L;
return new BaseResponse<>(socialringService.getSocialringInquiries(memberId, socialringId));
return new BaseResponse<>(socialringService.getSocialringInquiries(1007, socialringId));
}
}

0 comments on commit 2b1e978

Please sign in to comment.