Skip to content

Commit

Permalink
[feat] Vendor 회원가입 RequestDto 수정
Browse files Browse the repository at this point in the history
패스워드는 8자 이상부터 허용한다.
  • Loading branch information
Dr-KoKo committed Aug 11, 2024
1 parent c92a634 commit 4e8fa20
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public record SignUpVendorRequest(
String name,
@Email
String email,
@Length(min = 1, max = 30)
@Length(min = 8, max = 30)
String password,
@Phone
String phone
Expand Down

0 comments on commit 4e8fa20

Please sign in to comment.