Merge branch '19051-handle-quotes-in-search' into main
[arvados-workbench2.git] / src / store / progress-indicator / progress-indicator-actions.ts
index 5f824e401a57b1f360800b3d898312f374229a4a..8019c9059477ba251f9d21fb723b2d5225ded7ba 100644 (file)
@@ -2,11 +2,13 @@
 //
 // SPDX-License-Identifier: AGPL-3.0
 
-import { unionize, ofType, UnionOf } from "~/common/unionize";
+import { unionize, ofType, UnionOf } from "common/unionize";
 
 export const progressIndicatorActions = unionize({
-    START_SUBMIT: ofType<{ id: string }>(),
-    STOP_SUBMIT: ofType<{ id: string }>()
+    START_WORKING: ofType<string>(),
+    STOP_WORKING: ofType<string>(),
+    PERSIST_STOP_WORKING: ofType<string>(),
+    TOGGLE_WORKING: ofType<{ id: string, working: boolean }>()
 });
 
-export type ProgressIndicatorAction = UnionOf<typeof progressIndicatorActions>;
\ No newline at end of file
+export type ProgressIndicatorAction = UnionOf<typeof progressIndicatorActions>;