-
Notifications
You must be signed in to change notification settings - Fork 1
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: 소셜 로그인 시 랜딩할 페이지 결정에 사용할 헤더 추가 #64
Conversation
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.
한 가지 의문이 있는데 가볍게 확인해주세요
lgtm
if (member.getStudentId() == null) { | ||
return TO_REGISTRATION; | ||
} |
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.
멤버에 이 부분 확인하는 용도의 다른 필드가 있는 것보다 이렇게 학번으로 확인하는게 좋을까요?
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.
가입신청 상태만 따로 관리하는 필드가 있으면 가능할 것 같은데...
저희가 가입신청 상태를 멤버역할과 통합해서 관리하고 있고,
이때 가입신청서를 작성했든 작성하지 않았든 같은 GUEST라서 구별이 어려운 것 같아요
그래서 가입신청서 작성할 때 필드값 업데이트 치니까 필드값 null 여부로 판단한거긴 한데... 좀 마음에 안들긴 하죠
가입신청상태와 멤버상태를 분리할 수 있으면 좋긴 하겠네요. 더 명확하기도 하고요
일단 급하니까 임시로 필드값 널 여부로 처리하는 게 맞을 것 같아요~
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.
여유가 있으면 분리하는게 좋을 것 같긴한데
일단은 이렇게 가고 이슈 새로 만들어서 나중에 여유가 생기면 처리해도 좋을 것 같습니다.
내부 구현이라 프론트 쪽에 영향이 있는 것도 아니니까요
🌱 관련 이슈
📌 작업 내용 및 특이사항
Landing-Status
입니다.TO_STUDENT_AUTHENTICATION
/TO_REGISTRATION
/TO_DASHBOARD
세 가지 상태를 가집니다.univStatus
가PENDING
이면 재학생 인증 페이지로 랜딩합니다.📝 참고사항
📚 기타