Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

@Getter
public class CertificationCertifyRequest {
@Pattern(regexp = "^[a-zA-Z가-힣]{1,20}$", message = "한글/영문 1~20자 이내로 작성해주세요")
@Pattern(regexp = "^[a-zA-Z가-힣]{1,40}$", message = "한글/영문 1~40자 이내로 작성해주세요")
private String email;
@NotBlank
private String code;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

@Getter
public class CertificationEmailRequest {
@Pattern(regexp = "^[a-zA-Z가-힣]{1,20}$", message = "한글/영문 1~20자 이내로 작성해주세요")
@Pattern(regexp = "^[a-zA-Z가-힣]{1,40}$", message = "한글/영문 1~40자 이내로 작성해주세요")
private String email;
}
Loading