Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature_1/유저-auth-구현(-토큰-재발급,-로그…
Browse files Browse the repository at this point in the history
…아웃)'
  • Loading branch information
MinchoGreenT committed Oct 21, 2023
2 parents c48078a + 275a2b3 commit 63e6e99
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ name: ModernFarmer CI/CD
on:
push:
branches: ["dev"]

pull_request:
branches: ["dev"]


permissions:
contents: read

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public TokenResponseDto kakaoLogin(HttpServletRequest request) {

return reissueTokenResponseDto;
}

//
// @DeleteMapping("/logout")
// public ResponseDto logout(HttpServletRequest request) {
Expand Down Expand Up @@ -62,6 +63,7 @@ public TokenResponseDto kakaoLogin(HttpServletRequest request) {
// return reissueTokenResponseDto;
// }


@PostMapping(value = "/google-login")
public TokenResponseDto googleLogin(HttpServletRequest request) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,6 @@ public TokenResponseDto googleLogin(String accessToken) {
public TokenResponseDto kakaoLogin(String accessToken) {

User user;


Mono<KakaoUserResponseDto> userInfoMono = getUserKakaoInfo(accessToken);
KakaoUserResponseDto userInfo = userInfoMono.block();

Expand Down Expand Up @@ -209,7 +207,6 @@ public void deleteValueByKey(String key) {




public Mono<KakaoUserResponseDto> getUserKakaoInfo(String accessToken) {
return webClient
.get()
Expand Down

0 comments on commit 63e6e99

Please sign in to comment.