Skip to content

Commit

Permalink
feat: 클라이밍 생성 시 지도 사진 url을 nullable하도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
wonyangs committed Oct 24, 2024
1 parent 83c44b9 commit 666c22f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public record ClimbingGymCreateRequestDto(
@NotEmpty(message = "클라이밍장 이름은 필수입니다.") String gymName,
@NotEmpty(message = "썸네일 URL은 필수입니다.") String thumbnailUrl,
@NotEmpty(message = "지도 이미지 URL은 필수입니다.") String mapImageUrl,
String mapImageUrl,
@NotEmpty(message = "일정 이미지 URL은 필수입니다.") String calendarImageUrl,
@NotEmpty(message = "난이도 정보는 최소 하나 이상이어야 합니다.")
List<@Valid @NotNull(message = "난이도 정보는 비어있을 수 없습니다.") Difficulty> difficulties) {
Expand Down

0 comments on commit 666c22f

Please sign in to comment.