stop workflow run

This commit is contained in:
StyleZhang
2024-03-15 17:24:40 +08:00
parent e98456b025
commit 68f947c7e0
3 changed files with 67 additions and 21 deletions

View File

@ -30,3 +30,7 @@ export const singleNodeRun = (appId: string, nodeId: string, params: object) =>
export const publishWorkflow = (url: string) => {
return post<CommonResponse>(url)
}
export const stopWorkflowRun = (url: string) => {
return post<CommonResponse>(url)
}