(
@CurrentAuth() auth: AuthContext | null,
@Param('id') id: string,
)
| 456 | @Get(':id') |
| 457 | @ApiOkResponse({ type: WorkflowResponseDto }) |
| 458 | async findOne( |
| 459 | @CurrentAuth() auth: AuthContext | null, |
| 460 | @Param('id') id: string, |
| 461 | ): Promise<WorkflowResponseDto> { |
| 462 | const serviceResponse = await this.workflowsService.findById(id, auth); |
| 463 | return this.transformServiceResponseToApi(serviceResponse); |
| 464 | } |
| 465 | |
| 466 | @Get(':id/runtime-inputs') |
| 467 | @ApiOkResponse({ |
no test coverage detected