Skip to content

Commit

Permalink
[fix] fix validation for minimum size of name in UserUniversityPostRe…
Browse files Browse the repository at this point in the history
…quest (#176)
  • Loading branch information
Parkjyun authored Aug 23, 2024
1 parent 6351f8f commit 2307598
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

public record UserUniversityPostRequest(
Long universityId,
@NotBlank @Size(min = 3, max = 20)
@NotBlank @Size(min = 2, max = 20)
String name,
double longitude,
double latitude
Expand Down

0 comments on commit 2307598

Please sign in to comment.