()
| 30 | @UseGuards(JwtAuthGuard, AdminGuard) |
| 31 | @Get('booked-tickets') |
| 32 | async getBookedTickets() { |
| 33 | return this.busService.getBookedTickets(); |
| 34 | } |
| 35 | @UseGuards(JwtAuthGuard, AdminGuard) |
| 36 | @Post('bus') |
| 37 | async createNewBus(@Body() bus: BusDto) { |
nothing calls this directly
no outgoing calls
no test coverage detected