From 1e72b7ac5adc6d09ef240fef9e6052360947c823 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=AF=BC=EC=B0=AC=EA=B8=B0?= Date: Sat, 21 Sep 2024 21:00:14 +0900 Subject: [PATCH] fix: swagger description (#175) --- .../com/example/show/controller/UserShowController.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/api/show-api/src/main/java/com/example/show/controller/UserShowController.java b/app/api/show-api/src/main/java/com/example/show/controller/UserShowController.java index 2a8220f9..eb65e878 100644 --- a/app/api/show-api/src/main/java/com/example/show/controller/UserShowController.java +++ b/app/api/show-api/src/main/java/com/example/show/controller/UserShowController.java @@ -84,7 +84,7 @@ public ResponseEntity uninterested( } @GetMapping("/interests") - @Operation(summary = "공연 관심 목록 조회") + @Operation(summary = "관심 등록한 공연 목록 조회") public ResponseEntity> getInterests( @AuthenticationPrincipal AuthenticatedInfo info, @Valid @ParameterObject ShowInterestPaginationApiRequest request @@ -147,7 +147,7 @@ public ResponseEntity alert( } @GetMapping("/alerts") - @Operation(summary = "공연 알림 목록 조회") + @Operation(summary = "알림 설정한 공연 목록") public ResponseEntity> getAlerts( @AuthenticationPrincipal AuthenticatedInfo info, @Valid @ParameterObject ShowAlertPaginationApiRequest request @@ -177,7 +177,7 @@ public ResponseEntity> getAle } @GetMapping("/{showId}/alert/reservations") - @Operation(summary = "공연 티켓팅 알림 예약 조회") + @Operation(summary = "티켓팅한 공연의 알림 예약 현황") public ResponseEntity getAlertsReservations( @AuthenticationPrincipal AuthenticatedInfo info, @PathVariable("showId") UUID showId,