-
Notifications
You must be signed in to change notification settings - Fork 5
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-50] : 로그인 및 회원가입 구현 #58
base: develop
Are you sure you want to change the base?
Conversation
충돌 해결해서 pr 수정 부탁드립니다! |
# Conflicts: # build.gradle # config
충돌 해결 했습니다. 다시 확인 해주세요 |
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.
CrudRepository를 사용한 이유가 있나요 나중에 Redis를 적용하기 위함인가요 요 답변만 하고 머지 부탁드립니다.
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.
CrudRepository를 사용한 이유가 있나요 나중에 Redis를 적용하기 위함인가요
#️⃣ 요약 설명
📝 작업 내용
/admin 으로 시작하는 엔드포인트는 ADMIN 롤을 받은 회원만 접근 가능하도록 설정
나머지는 모든 롤이 다 접근 가능한데 추후에 제한해야 할 기능이 있을 경우 추가 가능
누구든 가입하면 무조건 USER 롤을 부여받도록 설정
관리자는 일단 USER로 가입을 하고 별도 쿼리를 날려서 ADMIN으로 변경할 예정
회원 가입 일자를 Response로 반환해주기 위해 BaseRDBEntity의 createAt에 Getter 추가
사용할 때
이런식으로 인자에 넣어주면 됩니다.
로그인 안되어 있으면 member = null
로그인 되어 있으면 member = 현재 로그인한 회원의 member객체
동작 확인
💬 리뷰 요구사항(선택)