From 080c7ab55be3387d268f974f9bb5ec52832221a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=ED=95=9C=ED=98=84=EA=B7=9C?= <72931656+gzhan0226@users.noreply.github.com> Date: Sun, 29 Sep 2024 05:32:58 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20api=20=EB=AA=85=EC=84=B8=20=EC=88=98?= =?UTF-8?q?=EC=A0=95=20(#81)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: 내 id 조회 추가 * fix: api 명세 수정 --- .../com/goormdari/domain/team/presentation/TeamController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/goormdari/domain/team/presentation/TeamController.java b/src/main/java/com/goormdari/domain/team/presentation/TeamController.java index 2f89e56..f8d3de0 100644 --- a/src/main/java/com/goormdari/domain/team/presentation/TeamController.java +++ b/src/main/java/com/goormdari/domain/team/presentation/TeamController.java @@ -108,7 +108,7 @@ public ResponseCustom joinTeam( @Operation(summary = "루틴 목록 조회", description = "teamId로 설정된 루틴 목록 조회") @ApiResponses(value = { - @ApiResponse(responseCode = "200", description = "루틴 목록 조회 성공", content = {@Content(mediaType = "application/json", schema = @Schema(implementation = CreateTeamResponse.class))}), + @ApiResponse(responseCode = "200", description = "루틴 목록 조회 성공", content = {@Content(mediaType = "application/json", schema = @Schema(implementation = ResponseCustom.class))}), @ApiResponse(responseCode = "400", description = "루틴 목록 조회 실패", content = {@Content(mediaType = "application/json", schema = @Schema(implementation = ErrorResponse.class))}), }) @GetMapping("/routine-list")