Skip to content

Commit

Permalink
✨ Feat : 친구 캘린더 조회 dto에 schedule type 추가
Browse files Browse the repository at this point in the history
<footer>
- 관련: #294
  • Loading branch information
joowojr committed Sep 17, 2024
1 parent 49c5877 commit bda5449
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ public static PersonalScheduleResponse.GetFriendMonthlyScheduleDto toGetFriendMo
.startDate(DateUtil.toSeconds(participant.getSchedule().getPeriod().getStartDate()))
.endDate(DateUtil.toSeconds(participant.getSchedule().getPeriod().getEndDate()))
.interval(participant.getSchedule().getPeriod().getDayInterval())
.scheduleType(participant.getSchedule().getScheduleType())
.build();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ public static class GetFriendMonthlyScheduleDto {
private Long endDate;
@Schema(description = "시작일과 종료일 차이")
private Long interval;
@Schema(description = "개인 스케줄 : 0, 모임 스케줄 : 1, 생일 스케줄 : 3", example = "0")
private int scheduleType;
}

}

0 comments on commit bda5449

Please sign in to comment.