Skip to content
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

edit : OAuth 로그인 프로세스 변경 #169

Merged
merged 15 commits into from
Apr 18, 2024
Merged

edit : OAuth 로그인 프로세스 변경 #169

merged 15 commits into from
Apr 18, 2024

Conversation

kkangh00n
Copy link
Collaborator

⛏ 작업 상세 내용

  • OAuth 로그인 시, 이메일, 닉네임, 프로필 이미지만 갖고옵니다.
  • 회원가입 폼에서 성별과 출생년도를 받아옵니다
  • OAuth 로그인을 테스트 어플리케이션이 아닌 정상 어플리케이션으로 변경합니다

✅ 중점적으로 리뷰 할 부분

  • User 엔티티 변경으로 TestFixture 수정이 너무 많아, User 생성자를 public 으로 수정하였습니다..!

참고사항

  • yml파일 변경 후, 서버에 올려서 직접 테스트 해보아야 합니다..!! 따라서 수정 사항이 더 있을 수 있습니다!

@kkangh00n kkangh00n added the Edit 기능 수정 label Apr 16, 2024
@kkangh00n kkangh00n requested a review from dlswns2480 April 16, 2024 11:54
@kkangh00n kkangh00n self-assigned this Apr 16, 2024
Copy link
Collaborator

@dlswns2480 dlswns2480 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

고생하셨습니다!
깊게 생각해보진 않았는데 User 생성자를 Public으로 하는 방법밖에 없을까요..?

SEVENTY("70~79", "70-79", "70대"),
EIGHTY("80~89", "80-89", "80대"),
NINETY("90~", "90-", "90이상");
UNKNOWN("0", "0", "알 ㅅ 없음", 0),
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

오타 있습니다~

Comment on lines 52 to 60
for (AgeGroup a : values()) {
//현재 연령대의 사용자의 나이가 포함된다면
if (a.getMaxAge()>=age) {
userAgeGroup = a;
}
}
return userAgeGroup;

}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

return문이 if문 안에 있어야 정상 흐름 아닌가욥??

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

break 건 다는걸 놓쳤네요..!! 감사합니다~!

@kkangh00n
Copy link
Collaborator Author

고생하셨습니다! 깊게 생각해보진 않았는데 User 생성자를 Public으로 하는 방법밖에 없을까요..?

정적 팩토리 메서드를 다 수정해야 줘야 한다 생각했는데, 지금 생각해보니 그냥 하나 더 만들면 되겠네요!!

@kkangh00n kkangh00n merged commit 467373d into dev Apr 18, 2024
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Edit 기능 수정
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants