Skip to content

Commit

Permalink
[#18] feat : 좌석 등급 목록 URI 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
princenim committed Apr 5, 2024
1 parent a67b5c4 commit dc9f2d8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public ResponseEntity<CommonResponse> getSchedule(@PathVariable String id) {
return ResponseEntity.ok(CommonResponse.ok(scheduleService.getSchedule(id)));
}

@GetMapping("/schedules/{id}/seat-grade")
@GetMapping("/schedules/{id}/seat-grades")
public ResponseEntity<CommonResponse> getSeatGradeBySchedule(@PathVariable String id) {
return ResponseEntity.ok(CommonResponse.ok(scheduleService.getSeatGradeBySchedule(id)));
}
Expand Down

0 comments on commit dc9f2d8

Please sign in to comment.