Skip to content

Commit

Permalink
[feat] 카카오 로그인 swagger 응답 형식 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
chanwoo7 committed Aug 22, 2024
1 parent 72d6a44 commit 98759c9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ public ResponseEntity<?> deleteAccount() {
parameters = {
@Parameter(name = "authorizationCode", description = "인가 코드")
},
responses = {@ApiResponse(responseCode = "200", content = @Content(schema = @Schema(implementation = UserDto.class)),
description = UserDto.description)})
responses = {@ApiResponse(responseCode = "200", content = @Content(schema = @Schema(implementation = LoginSuccessResponseDto.class)),
description = LoginSuccessResponseDto.description)})
@PostMapping("/kakaoLogin")
public ResponseEntity<?> kakaoLogin(String authorizationCode) {
LoginSuccessResponseDto loginSuccessResponseDto = kakaoService.kakaoLogin(authorizationCode);
Expand Down

0 comments on commit 98759c9

Please sign in to comment.