diff --git a/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts b/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts
index 0bccbad2d..9d92d9ba7 100644
--- a/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts
+++ b/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts
@@ -211,4 +211,27 @@ describe('WorkflowsComponent', () => {
editDialog.confirmClicked.emit()
expect(reloadSpy).toHaveBeenCalled()
})
+
+ it('should update workflow when enable is toggled', () => {
+ const patchSpy = jest.spyOn(workflowService, 'patch')
+ const toggleInput = fixture.debugElement.query(
+ By.css('input[type="checkbox"]')
+ )
+ const toastErrorSpy = jest.spyOn(toastService, 'showError')
+ const toastInfoSpy = jest.spyOn(toastService, 'showInfo')
+ // fail first
+ patchSpy.mockReturnValueOnce(
+ throwError(() => new Error('Error getting config'))
+ )
+ toggleInput.nativeElement.click()
+ expect(patchSpy).toHaveBeenCalled()
+ expect(toastErrorSpy).toHaveBeenCalled()
+ // succeed second
+ patchSpy.mockReturnValueOnce(of(workflows[0]))
+ toggleInput.nativeElement.click()
+ patchSpy.mockReturnValueOnce(of({ ...workflows[0], enabled: false }))
+ toggleInput.nativeElement.click()
+ expect(patchSpy).toHaveBeenCalled()
+ expect(toastInfoSpy).toHaveBeenCalled()
+ })
})
diff --git a/src-ui/src/app/components/manage/workflows/workflows.component.ts b/src-ui/src/app/components/manage/workflows/workflows.component.ts
index 92b421e9f..592dd3efe 100644
--- a/src-ui/src/app/components/manage/workflows/workflows.component.ts
+++ b/src-ui/src/app/components/manage/workflows/workflows.component.ts
@@ -130,4 +130,21 @@ export class WorkflowsComponent
})
})
}
+
+ onWorkflowEnableToggled(workflow: Workflow) {
+ this.workflowService.patch(workflow).subscribe({
+ next: () => {
+ this.toastService.showInfo(
+ workflow.enabled
+ ? $localize`Enabled workflow`
+ : $localize`Disabled workflow`
+ )
+ this.workflowService.clearCache()
+ this.reload()
+ },
+ error: (e) => {
+ this.toastService.showError($localize`Error toggling workflow.`, e)
+ },
+ })
+ }
}