Skip to content

Commit

Permalink
fix: 일정의 시작 날짜 제약 없애기
Browse files Browse the repository at this point in the history
오늘보다 이전일 경우 일정 생성 가능하게 변경
  • Loading branch information
softpeanut committed Dec 7, 2022
1 parent 35202de commit 729e694
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ data class AddIndividualScheduleWebRequest(
val title: String,

@field:NotNull
@field:FutureOrPresent
val startAt: LocalDate,

// TODO 시작일, 종료일 검증 Resolver 구현
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ data class AddSpotScheduleWebRequest(
val title: String,

@field:NotNull
@field:FutureOrPresent
val startAt: LocalDate,

// TODO 시작일, 종료일 검증 Resolver 구현
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ data class ChangeIndividualScheduleWebRequest(
val title: String,

@field:NotNull
@field:FutureOrPresent
val startAt: LocalDate,

// TODO 시작일, 종료일 검증 Resolver 구현
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ data class ChangeSpotScheduleWebRequest(
val title: String,

@field:NotNull
@field:FutureOrPresent
val startAt: LocalDate,

// TODO 시작일, 종료일 검증 Resolver 구현
Expand Down

0 comments on commit 729e694

Please sign in to comment.