Skip to content

Commit

Permalink
🐛[fix]: swagger docs response example
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyesooo committed Nov 4, 2023
1 parent 5cd3008 commit c222d43
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class MyPageController {
@GetMapping("/likes/{userId}")
@Operation(summary = "마이페이지에서 좋아요 목록 조회(보관함조회)",
description = "마이페이지 좋아요한 명언 목록 조회(보관함조회)",
responses = { @ApiResponse(responseCode = "200", description = "조회 성공", content = @Content(schema = @Schema(implementation = CommCdTpResource.class)))}
responses = { @ApiResponse(responseCode = "200", description = "조회 성공", content = @Content(schema = @Schema(implementation = QuoteResource.class)))}
)
@Parameter(name = "userId", description = "사용자ID", in = ParameterIn.PATH)
public ApiRes<List<QuoteResource>> getLikedQuotes(@PathVariable("userId") Long userId){
Expand Down

0 comments on commit c222d43

Please sign in to comment.