Skip to content

Commit

Permalink
[Feat/#288] Add scheduleId field to overlapping schedules API response
Browse files Browse the repository at this point in the history
  • Loading branch information
ahnsugyeong committed Jun 4, 2024
1 parent 6f5d4d0 commit 0816356
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 @@ -63,6 +63,7 @@ public static OverlappedScheduleDto toOverlappedScheduleDto(Schedule schedule) {
.scheduleTitle(schedule.getTitle())
.teamName(schedule.getTeam().getName())
.teamColor(schedule.getTeam().getTeamColor())
.scheduleId(schedule.getId())
.build();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ public static class OverlappedScheduleDto {
private String teamName;
private TeamColor teamColor;
private String scheduleTitle;
private Long scheduleId;
}


Expand Down

0 comments on commit 0816356

Please sign in to comment.