Skip to content

Commit

Permalink
refactor: 이메일, 닉네임 에러 처리 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
yunhacandy committed Aug 14, 2024
1 parent fd456f1 commit a22148d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public Token createLoginInfo(AuthProvider authProvider, LoginRequest request) {
else {
// 신규 회원일 경우 회원가입 처리
validateService.checkPasswordPattern(request.password());
validateService.checkDuplicateEmail(request.email());
//validateService.checkDuplicateEmail(request.email());

log.info("[회원 가입 서비스]: {}", request.email());

Expand Down Expand Up @@ -110,7 +110,7 @@ public Token completeSignup(CompleteSignupRequest request, String accessToken) {
if(member.getMemberRole() == MemberRole.PENDING){
// 필드를 개별적으로 업데이트
member.updateMemberInfo(request.name(), request.field(), request.belong(),request.job());
validateService.checkDuplicateNickName(request.name()); //닉네임 중복 체크
//validateService.checkDuplicateNickName(request.name());
member.updateRole(MemberRole.MEMBER);
memberRepository.save(member);

Expand Down

0 comments on commit a22148d

Please sign in to comment.