Skip to content

Commit

Permalink
refactor: 어드민 login dto에서 @pattern 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
hyeokson committed Aug 23, 2024
1 parent 6106f3a commit 6b4cd52
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,8 @@
public class AdminLoginRequestDto {

@NotNull
@Pattern(regexp = ValidationConstant.ADMIN_ACCOUNT_REGEX,
message = ValidationConstant.ADMIN_ACCOUNT_MSG)
private String account;

@NotNull
@Pattern(regexp = ValidationConstant.ADMIN_PASSWORD_REGEX,
message = ValidationConstant.ADMIN_PASSWORD_MSG)
private String password;
}

0 comments on commit 6b4cd52

Please sign in to comment.