Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 스터디 시작 시간 및 종료 시간의 NotNull 검증 제거 #700

Merged
merged 1 commit into from
Aug 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ public record StudyCreateRequest(
@Future @NotNull(message = "스터디 시작일은 null이 될 수 없습니다.") @Schema(description = "스터디 시작일", pattern = DATE)
LocalDate startDate,
@NotNull(message = "스터디 요일은 null이 될 수 없습니다.") @Schema(description = "스터디 요일") DayOfWeek dayOfWeek,
@NotNull @Schema(description = "스터디 시작 시간") LocalTime studyStartTime,
@NotNull @Schema(description = "스터디 종료 시간") LocalTime studyEndTime,
@Schema(description = "스터디 시작 시간") LocalTime studyStartTime,
@Schema(description = "스터디 종료 시간") LocalTime studyEndTime,
@NotNull(message = "스터디 타입은 null이 될 수 없습니다.") @Schema(description = "스터디 타입") StudyType studyType) {}