Remove automated trigger update (#15663)

Automated triggers are duplicated on version update.
This commit is contained in:
Thomas Trompette
2025-11-06 11:01:24 +01:00
committed by GitHub
parent 051a226b6f
commit 259c8cde08
5 changed files with 120 additions and 103 deletions
@@ -45,9 +45,9 @@ export class WorkflowTriggerResolver {
@Args('workflowVersionId', { type: () => UUIDScalarType })
workflowVersionId: string,
) {
return this.workflowTriggerWorkspaceService.activateWorkflowVersion({
return this.workflowTriggerWorkspaceService.activateWorkflowVersion(
workflowVersionId,
});
);
}
@Mutation(() => Boolean)