-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
소셜로그인, 일반로그인 여부 구분 및 리다이렉트 추가 (#802)
* feat: 소셜 로그인으로 가입한 회원인지 일반 로그인으로 가입한 회원인지 판단하는 Enum 추가 * feat: 일반 회원인 경우 STANDARD로 가입 * feat: 소셜 회원인 경우 SOCIAL로 가입 * feat: 이미 소셜 로그인으로 가입한 회원인 경우 특정 주소로 리다이렉트 하도록 구현 * chore: yml update * style: sonarqube * feat: 회원정보 조회 시 소셜로그인/일반가입 필드 추가 * chore: yml update * feat: 리다이렉트 주소 변경
- Loading branch information
Showing
7 changed files
with
52 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package balancetalk.member.domain; | ||
|
||
public enum SignupType { | ||
SOCIAL, STANDARD | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters