Skip to content

Commit

Permalink
[merge] 모임에 해당하는 신청자 전체 조회 시 모임명도 같이 반환하도록 수정
Browse files Browse the repository at this point in the history
[hotfix] 모임에 해당하는 신청자 전체 조회 시 모임명도 같이 반환하도록 수정
  • Loading branch information
lreowy authored Jul 17, 2024
2 parents 13efb8a + efa3878 commit adc9cc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

@Builder
public record MoimSubmissionByMoimResponse(
String moimTitle,
int maxGuest, //신청자 최대 인원
Boolean isApprovable, //승인가능여부
List<SubmitterInfo> submitterList //신청자 리스트
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ public MoimSubmissionByMoimResponse getSubmitterListByMoim(Long moimId) {

return MoimSubmissionByMoimResponse
.builder()
.moimTitle(moim.getTitle())
.maxGuest(moim.getMaxGuest())
.isApprovable(isApprovable(moim))
.submitterList(submitterInfoList)
Expand Down

0 comments on commit adc9cc9

Please sign in to comment.