(@Param('id') id: string)
| 45 | @HttpCode(204) |
| 46 | @Delete(':id') |
| 47 | remove(@Param('id') id: string) { |
| 48 | return this.ordersService.remove(id); |
| 49 | } |
| 50 | |
| 51 | @MessagePattern('transactions_result') |
| 52 | async consumerUpdateStatus(@Payload() message: KafkaMessage) { |
nothing calls this directly
no outgoing calls
no test coverage detected