Skip to content

Commit

Permalink
[#157] fix: 모임 홈 개선 - 모임 둘러보기 API 응답 모임 모집기간 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
rdd9223 committed Apr 7, 2024
1 parent 810c497 commit 76e9565
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ public class MeetingV2GetMeetingBannerResponseDto {
private LocalDateTime mEndDate;
/** 모임 모집 시작일 */
private LocalDateTime startDate;
/** 모임 모집 종료일 */
private LocalDateTime endDate;
/** 모임 인원 */
private Integer capacity;
/** 최근 활동 일자 */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public List<MeetingV2GetMeetingBannerResponseDto> getMeetingBanner() {

return MeetingV2GetMeetingBannerResponseDto.of(meeting.getId(), meeting.getUserId(),
meeting.getTitle(), meeting.getCategory(), meeting.getImageURL(),
meeting.getStartDate(), meeting.getMStartDate(), meeting.getMEndDate(),
meeting.getMStartDate(), meeting.getMEndDate(), meeting.getStartDate(), meeting.getEndDate(),
meeting.getCapacity(), recentActivityDate, meeting.getTargetActiveGeneration(),
meeting.getJoinableParts(), applicantCount, appliedUserCount, meetingLeader,
meeting.getMeetingStatus());
Expand Down

0 comments on commit 76e9565

Please sign in to comment.