Skip to content

Commit

Permalink
docs: modfiy auth api
Browse files Browse the repository at this point in the history
  • Loading branch information
jinlee1703 committed Sep 25, 2023
1 parent 8444a84 commit 15cad39
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ public ResponseEntity<Message> naverCallback(@RequestParam String code, @Request
}

@PostMapping("/sign-in/kakao")
@Operation(summary = "카카오 로그인 콜백 메서드", description = "카카오 로그인 콜백을 하기 위한 메서드입니다.")
@Operation(summary = "카카오 로그인 메서드", description = "카카오 로그인을 하기 위한 메서드입니다.")
@ApiResponses({
@ApiResponse(responseCode = "200", description = "카카오 로그인 성공"),
@ApiResponse(responseCode = "400(400-1)", description = "잘못된 프로토콜 요청"),
Expand All @@ -186,7 +186,7 @@ public ResponseEntity<Message> kakaoCallback(@RequestBody TokenDto dto) throws I
}

@PostMapping("/sign-in/google")
@Operation(summary = "구글 로그인 콜백 메서드", description = "구글로부터 사용자 정보를 얻어와 회원가입 및 로그인을 하기 위한 메서드입니다.")
@Operation(summary = "구글 로그인 메서드", description = "구글로부터 사용자 정보를 얻어와 회원가입 및 로그인을 하기 위한 메서드입니다.")
@ApiResponses({
@ApiResponse(responseCode = "200", description = "구글 로그인 성공"),
@ApiResponse(responseCode = "400(400)", description = "잘못된 프로토콜 혹은 URL 요쳥"),
Expand Down

0 comments on commit 15cad39

Please sign in to comment.