-
Notifications
You must be signed in to change notification settings - Fork 6
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
feat-be: 이메일 인증 후, 회원가입 이메일의 인증 여부 확인 #882
Conversation
1729582626.285269 |
📌 Test Coverage Report
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
고생하셨습니동
제안 사항 딱 한가지만 드립니동
|
||
public static VerificationStatus fromString(String status) { | ||
try { | ||
return VerificationStatus.valueOf(status); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
valueOf() 보다 Enum 객체가 String value
field를 가지게 하는건 어떨까요?
stream으로 찾아서 같은 값을 가진 enum을 return 해주고, 없으면 NOT_VERIFIED
를 return 해주는 방식으로요!
특정 예외를 catch하는 것보다 안정성이 있어보여서 제안 드렸습니다 :>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
드디어 이메일 인증도 생겼군요 수고하셨습니다~
Co-authored-by: Kwoun Ki Ho <[email protected]>
Co-authored-by: Kwoun Ki Ho <[email protected]>
Co-authored-by: Kwoun Ki Ho <[email protected]>
fix-be: applicantCard 조회 시 평가 점수와 갯수가 모든 프로세스에 대해 나오는 버그 수정 (#902) fix-be: 이메일 인증 시 이미 가입된 이메일은 예외를 던지도록 변경 (#906) feat-be: RTR 방식 Redis로 변경 (#889) feat-be: 이메일 전송 템플릿 적용 (#897) feat-be: 이메일 인증 후, 회원가입 이메일의 인증 여부 확인 (#882) refactor-be: 식별자에 Tsid 적용 (#856) feat-be: 이메일 전송 로직 중 지원자 일괄 조회 로직 구현 (#869) fix-be: github action의 Redis 환경 변수 추가 (#871) feat-be: 이메일 인증 기능 구현 (#848)
Original issue description
목적
작업 세부사항
EMAIL_VALID_02
closes #881