Package pricing issue resolution, passenger report updates

This commit is contained in:
Stephanos A
2026-07-17 23:48:49 +03:00
parent 1d9238fa39
commit eee14a5051
3 changed files with 12 additions and 14 deletions

View File

@@ -18,8 +18,8 @@ export class ReportsController {
return this.service.generateReport(dto);
}
@Get('occupancy')
@ApiOperation({ summary: 'Occupancy report for a specific schedule' })
@Get('passengers')
@ApiOperation({ summary: 'Passengers report for a specific schedule' })
getOccupancyReport(@Query('scheduleId') scheduleId: string) {
return this.service.getOccupancyBySchedule(scheduleId);
}