Skip to content

Commit

Permalink
fix: swagger description (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
devmizz authored and GaBaljaintheroom committed Oct 7, 2024
1 parent bbc7667 commit 1e72b7a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public ResponseEntity<Void> uninterested(
}

@GetMapping("/interests")
@Operation(summary = "공연 관심 목록 조회")
@Operation(summary = "관심 등록한 공연 목록 조회")
public ResponseEntity<PaginationApiResponse<InterestShowPaginationApiResponse>> getInterests(
@AuthenticationPrincipal AuthenticatedInfo info,
@Valid @ParameterObject ShowInterestPaginationApiRequest request
Expand Down Expand Up @@ -147,7 +147,7 @@ public ResponseEntity<Void> alert(
}

@GetMapping("/alerts")
@Operation(summary = "공연 알림 목록 조회")
@Operation(summary = "알림 설정한 공연 목록")
public ResponseEntity<PaginationApiResponse<ShowAlertPaginationApiParam>> getAlerts(
@AuthenticationPrincipal AuthenticatedInfo info,
@Valid @ParameterObject ShowAlertPaginationApiRequest request
Expand Down Expand Up @@ -177,7 +177,7 @@ public ResponseEntity<PaginationApiResponse<ShowAlertPaginationApiParam>> getAle
}

@GetMapping("/{showId}/alert/reservations")
@Operation(summary = "공연 티켓팅 알림 예약 조회")
@Operation(summary = "티켓팅한 공연의 알림 예약 현황")
public ResponseEntity<TicketingAlertReservationApiResponse> getAlertsReservations(
@AuthenticationPrincipal AuthenticatedInfo info,
@PathVariable("showId") UUID showId,
Expand Down

0 comments on commit 1e72b7a

Please sign in to comment.