fix: pipeline duplication bug

This commit is contained in:
Junyan Qin
2025-12-19 23:27:08 +08:00
parent ae772074a1
commit adc65f66eb
8 changed files with 94 additions and 15 deletions
+4
View File
@@ -172,6 +172,10 @@ export class BackendClient extends BaseHttpClient {
return this.delete(`/api/v1/pipelines/${uuid}`);
}
public copyPipeline(uuid: string): Promise<{ uuid: string }> {
return this.post(`/api/v1/pipelines/${uuid}/copy`);
}
public getPipelineExtensions(uuid: string): Promise<{
enable_all_plugins: boolean;
enable_all_mcp_servers: boolean;