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

Method delete

backend/src/workflows/workflows.service.ts:523–527  ·  view source on GitHub ↗
(id: string, auth?: AuthContext | null)

Source from the content-addressed store, hash-verified

521 }
522
523 async delete(id: string, auth?: AuthContext | null): Promise<void> {
524 const organizationId = await this.requireWorkflowAdmin(id, auth);
525 await this.repository.delete(id, { organizationId });
526 this.logger.log(`Deleted workflow ${id}`);
527 }
528
529 async list(auth?: AuthContext | null): Promise<ServiceWorkflowResponse[]> {
530 const organizationId = this.requireOrganizationId(auth);

Callers 4

removeMethod · 0.45
archiveRunMethod · 0.45
createMethod · 0.45
releaseFlowContextMethod · 0.45

Calls 1

requireWorkflowAdminMethod · 0.95

Tested by

no test coverage detected