MCPcopy Create free account
hub / github.com/ShipSecAI/studio / findOne

Method findOne

backend/src/workflows/workflows.controller.ts:458–464  ·  view source on GitHub ↗
(
    @CurrentAuth() auth: AuthContext | null,
    @Param('id') id: string,
  )

Source from the content-addressed store, hash-verified

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({

Callers 1

Calls 2

findByIdMethod · 0.45

Tested by

no test coverage detected