Skip to content

Commit

Permalink
[fix] 사용자 대학교 설정 정보 조회 API valid 제거 (#104)
Browse files Browse the repository at this point in the history
* [fix] remove @SiZe(max = 5) annotation

* [chore] update submodule
  • Loading branch information
PicturePark1101 authored Jul 16, 2024
1 parent ad78bfa commit a4902cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server-yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
import jakarta.validation.constraints.NotBlank;
import jakarta.validation.constraints.Size;

public record UserUniversityPostRequest(long universityId, @NotBlank @Size(max = 5) String name, double longitude, double latitude) {
public record UserUniversityPostRequest(long universityId, @NotBlank String name, double longitude, double latitude) {
}

0 comments on commit a4902cb

Please sign in to comment.