Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking β€œSign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop To Prod #182

Merged
merged 15 commits into from
Oct 7, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: swagger description (#175)
  • Loading branch information
devmizz authored Sep 21, 2024
commit d324ae19827c18188a364986999fae5ec9bd28e7
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
Loading