Skip to content

Commit

Permalink
fix: fixed naming of variable ListClubScheduleEntityResponseDto and r…
Browse files Browse the repository at this point in the history
…emoved jsonunwrap for coordinate in CreateOrUpdateScheduleRequestDto
  • Loading branch information
peageon committed Jul 17, 2024
1 parent a2f4b2d commit 9b548a1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
@NoArgsConstructor(access = AccessLevel.PROTECTED)
@AllArgsConstructor
public class ListClubScheduleEntityResponseDto {
private List<ClubScheduleEntityResponseDto> clubScheduleEntityResponseDtos;
private List<ClubScheduleEntityResponseDto> schedules;
}
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ public class CreateOrUpdateScheduleRequestDto {
private LocalDateTime dateTime;

@NotNull(message = "Location must not be null")
@JsonUnwrapped
private CoordinateDto location;

public Point getLocation() {
Expand Down

0 comments on commit 9b548a1

Please sign in to comment.