Skip to content

Commit

Permalink
fix: SignUp
Browse files Browse the repository at this point in the history
  • Loading branch information
uzhjd committed Feb 28, 2022
1 parent 8ae6cc5 commit 1862fe0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
public class UserRequest {
@Schema(description = "사용자의 아이디", nullable = false, example = "ujeong1009")
@NotBlank(message = "아이디를 입력하세요!")
@Size(max = 10, message = "10자 이하로 입력하세요!")
@Size(max = 15, message = "15자 이하로 입력하세요!")
@Pattern(regexp = "(?=\\w)[\\w]{1,10}$")
private String userId;

Expand Down

0 comments on commit 1862fe0

Please sign in to comment.