-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat : 네이버 oauth 기능, 카카오 oauth 기능 추가 (#213)
* Fix : 카카오 회원탈퇴 오류 수정 , 카카오 추가정보 있을때 회원가입 (#210) * Feat : 카카오 추가정보 있을때 회원가입 * Fix : 카카오 회원탈퇴 오류 수정 성별이 필드가 비어있을때 조회 사용하는 로직 수정 * Feat : 네이버 oauth (#211) 회원가입, 로그인, 로그아웃, 회원탈퇴 --------- Co-authored-by: hyeonjaez <jhjh0022@naver.com> Co-authored-by: Fiat_lux <50399586+hyeonjaez@users.noreply.github.com> Co-authored-by: SK\ssssk <ssssksss@naver.com> Co-authored-by: 노현진 <nhj9831@naver.com>
- Loading branch information
1 parent
9eb7c75
commit 605a329
Showing
13 changed files
with
488 additions
and
45 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
7 changes: 7 additions & 0 deletions
7
src/main/java/solitour_backend/solitour/auth/exception/RevokeFailException.java
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,7 @@ | ||
package solitour_backend.solitour.auth.exception; | ||
|
||
public class RevokeFailException extends RuntimeException { | ||
public RevokeFailException(String message) { | ||
super(message); | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/java/solitour_backend/solitour/auth/exception/UnsupportedLoginTypeException.java
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,7 @@ | ||
package solitour_backend.solitour.auth.exception; | ||
|
||
public class UnsupportedLoginTypeException extends RuntimeException { | ||
public UnsupportedLoginTypeException(String message) { | ||
super(message); | ||
} | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/java/solitour_backend/solitour/auth/exception/UserRevokeErrorException.java
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,7 @@ | ||
package solitour_backend.solitour.auth.exception; | ||
|
||
public class UserRevokeErrorException extends RuntimeException { | ||
public UserRevokeErrorException(String message) { | ||
super(message); | ||
} | ||
} |
Oops, something went wrong.