Skip to content

Commit

Permalink
[Fix]: 챌린지 리뷰 not null 체크 메세지 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kwonssshyeon committed Sep 26, 2024
1 parent 50b9db7 commit fbef814
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ public static class Create extends SelfValidating<Create> {
@Max(5)
private final Integer rating;

@NotNull(message = "평점은 필수입니다.")
@NotNull(message = "체감난이도는 필수입니다.")
@Min(1)
@Max(5)
@Max(3)
private final Integer difficulty;

@NotNull(message = "평점은 필수입니다.")
@NotNull(message = "성취도는 필수입니다.")
@Min(1)
@Max(3)
private final Integer achievement;
Expand Down

0 comments on commit fbef814

Please sign in to comment.