Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: approvedCount 필드 추가 #466

Merged
merged 1 commit into from
Oct 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,14 @@ public record MeetingV2GetCreatedMeetingByUserResponseDto(
@Schema(description = "모임장 정보", example = "")
@NotNull
MeetingCreatorDto user,
@Schema(description = "신청 수", example = "7")
@Schema(description = "[DEPRECATED] TODO: FE에서 수정 완료 후 삭제 ", example = "7")
@NotNull
int appliedCount
int appliedCount,
@Schema(description = "신청자 수", example = "7")
@NotNull
int approvedCount
) {
public static MeetingV2GetCreatedMeetingByUserResponseDto of(Meeting meeting, boolean isCoLeader, int appliedCount,
public static MeetingV2GetCreatedMeetingByUserResponseDto of(Meeting meeting, boolean isCoLeader, int approvedCount,
LocalDateTime now) {
MeetingCreatorDto creatorDto = MeetingCreatorDto.of(meeting.getUser());
boolean canJoinOnlyActiveGeneration = meeting.getTargetActiveGeneration() == CrewConst.ACTIVE_GENERATION
Expand All @@ -82,7 +85,7 @@ public static MeetingV2GetCreatedMeetingByUserResponseDto of(Meeting meeting, bo
meeting.getTargetActiveGeneration(), meeting.getJoinableParts(), meeting.getCategory().getValue(),
canJoinOnlyActiveGeneration, meeting.getMeetingStatus(now), isCoLeader, meeting.getImageURL(),
meeting.getIsMentorNeeded(), meeting.getMStartDate(), meeting.getMEndDate(), meeting.getCapacity(),
creatorDto, appliedCount);
creatorDto, approvedCount, approvedCount);
}

}
Loading