Skip to content

Commit

Permalink
Merge pull request #22 from ProjectInTheClass/back
Browse files Browse the repository at this point in the history
feat: Participants 소문자로 수정
  • Loading branch information
kmer1024 authored Dec 6, 2024
2 parents 346dfbb + 98374e8 commit c231c18
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public record ScheduleResponse(
String name,
LocalDate startDate,
LocalDate endDate,
List<String> Participants,
List<String> participants,
String description,
String tag,
String url
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ public ScheduleResponse getScheduleInfo(Long scheduleId) {
.description(description)
.tag(tag)
.url(url)
.Participants(participants)
.participants(participants)
.build();
}

Expand Down Expand Up @@ -174,7 +174,7 @@ public ScheduleResponse postSchedule(PostScheduleRequest request) {
.description(savedSchedule.getDescription())
.tag(savedSchedule.getTag())
.url(savedSchedule.getUrl())
.Participants(names)
.participants(names)
.build();
}

Expand Down Expand Up @@ -220,7 +220,7 @@ public ScheduleResponse putSchedule(PutScheduleRequest request, Long scheduleId)
.description(savedSchedule.getDescription())
.tag(savedSchedule.getTag())
.url(savedSchedule.getUrl())
.Participants(names)
.participants(names)
.build();
}

Expand Down

0 comments on commit c231c18

Please sign in to comment.