Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyoil2 committed Jan 22, 2024
1 parent 93b00d7 commit fad8819
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
@NoArgsConstructor(access = AccessLevel.PROTECTED)
public class CheckAccountIdRequest {

@Size(min = 8, max = 30, message = "아이디는 최소 8자, 최대 30자 입니다.")
private String accountId;

}
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ public class CheckAccountIdService {

public void checkAccountId(CheckAccountIdRequest request) {

if (userRepository.existsByAccountId(request.getAccountId())) {
throw AccountIdAlreadyExistsException.EXCEPTION;
}

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ public void checkPassword(CheckPasswordRequest request) {

}
}

0 comments on commit fad8819

Please sign in to comment.