Skip to content

Commit

Permalink
✨ FEAT. 회원가입, 비밀번호 유효성 검증 임시 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
junhaa committed Aug 5, 2024
1 parent 2c4300d commit daab518
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ public class SignUpRequestDto {
public static class Request {

@Schema(description = "회원가입 할 로그인 ID", example = "user1234")
@Pattern(regexp = "^[a-zA-Z0-9]{5,15}$", message = "아이디는 영문 또는 숫자로 5~15자여야 합니다.")
// @Pattern(regexp = "^[a-zA-Z0-9]{5,15}$", message = "아이디는 영문 또는 숫자로 5~15자여야 합니다.")
@NotEmpty(message = "아이디가 필요합니다.")
private String loginId;

@Schema(description = "회원가입 할 비밀번호", example = "password123")
@Pattern(regexp = "^(?=.*[a-zA-Z])(?=.*\\d)(?=.*[@$!%*?&])[A-Za-z\\d@$!%*?&]{8,}$", message = "비밀번호는 최소 하나의 문자 및 하나의 숫자, 특수문자를 포함하여 8자 이상이어야 합니다.")
// @Pattern(regexp = "^(?=.*[a-zA-Z])(?=.*\\d)(?=.*[@$!%*?&])[A-Za-z\\d@$!%*?&]{8,}$", message = "비밀번호는 최소 하나의 문자 및 하나의 숫자, 특수문자를 포함하여 8자 이상이어야 합니다.")
@NotEmpty(message = "비밀번호가 필요합니다.")
private String password;

Expand Down

0 comments on commit daab518

Please sign in to comment.