(@Param('runId') runId: string, @CurrentAuth() auth: AuthContext | null)
| 697 | schema: runConfigSchema, |
| 698 | }) |
| 699 | async config(@Param('runId') runId: string, @CurrentAuth() auth: AuthContext | null) { |
| 700 | return this.workflowsService.getRunConfig(runId, auth); |
| 701 | } |
| 702 | |
| 703 | @Post('/runs/:runId/cancel') |
| 704 | @ApiOkResponse({ |
no test coverage detected