-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix : 재발급한 비밀번호로 로그인 되지 않는 문제 #748
Comments
givemethatsewon
changed the title
[FIX] 재발급한 비밀번호로 로그인 되지 않는 문제
fix : 재발급한 비밀번호로 로그인 되지 않는 문제
Nov 7, 2024
This was referenced Nov 9, 2024
sanggae4133
added a commit
that referenced
this issue
Nov 13, 2024
#748 <- 해당 이슈에 검증 과정 기록해 놓았습니다. ## Description 이번 PR에서는 다음과 같은 변경 사항이 적용되었습니다: - 에러 클래스 추가: NotFoundException 클래스를 새로 생성하여, BadRequestException 대신 사용하도록 수정했습니다. 더 정확한 예외 처리를 위해, 리소스가 존재하지 않을 때 NotFoundException을 사용합니다. - 비밀번호 찾기 API 개선: UserService에서 비밀번호 변경 전에 메일 전송을 먼저 수행하도록 로직 순서를 수정했습니다. dirty checking을 활용하여 userRepository.save() 호출을 제거했습니다. findByEmailAndNameAndStudentIdAndPhoneNumber 메서드 호출 시, DTO 필드 값에 trim()을 적용해 불필요한 공백이 제거되도록 했습니다. - Controller 리턴 타입 변경: findPassword 메서드의 리턴 타입을 UserResponseDto에서 void로 수정했습니다. 이 메서드는 비밀번호 재설정 메일 전송을 담당하기 때문에, 별도의 응답 DTO가 필요하지 않습니다.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
🚩 관련사항
문제 파악 및 해결 예정
The text was updated successfully, but these errors were encountered: