We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
51번 경우 동일한 Email 계정으로 naver, kakao 로그인 시 새로 생성되지 않고 덧붙이는 현상 발생.
private Member saveOrUpdate(OAuthAttributes attributes) { Member member = memberRepository.findByEmail(attributes.getEmail()) .map(entity -> entity.update(attributes.getName(),attributes.getPicture())) .orElse(attributes.toEntity()); return memberRepository.save(member); }
The text was updated successfully, but these errors were encountered:
phjppo0918
POL6463
No branches or pull requests
51번 경우 동일한 Email 계정으로 naver, kakao 로그인 시 새로 생성되지 않고 덧붙이는 현상 발생.
config/auth/CustomOAuth2UserService.java
The text was updated successfully, but these errors were encountered: