Skip to content

Commit

Permalink
[fix] 소셜 로그인 시 성별을 G0으로 저장하도록 롤백
Browse files Browse the repository at this point in the history
  • Loading branch information
chanwoo7 committed Aug 24, 2024
1 parent f8e6354 commit cf1e69b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public LoginSuccessResponseDto appleLogin(String idToken) {
newUser.setPassword("unused"); // 애플 로그인 사용자는 패스워드 사용하지 않음
newUser.setLoginId(null); // 애플 로그인 사용자는 loginId가 null
newUser.setNickname(""); // 빈 문자열로 설정
newUser.setGender(Gender.G0);
user = newUser;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ public LoginSuccessResponseDto kakaoLogin(String idToken) {
newUser.setPassword("unused"); // 카카오 로그인 사용자는 패스워드 사용하지 않음
newUser.setLoginId(null); // 카카오 로그인 사용자는 loginId가 null
newUser.setNickname(""); // 빈 문자열로 설정
newUser.setGender(Gender.G0);
user = newUser;
}

Expand Down

0 comments on commit cf1e69b

Please sign in to comment.