18315: Adds file upload test proving that the UI is correctly updated.
[arvados-workbench2.git] / src / store / progress-indicator / progress-indicator-actions.ts
index 3712e41b6899578d1b41e8151620c82eba83b831..8019c9059477ba251f9d21fb723b2d5225ded7ba 100644 (file)
@@ -2,12 +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: ofType<string>(),
-    STOP: ofType<string>(),
-    TOGGLE: ofType<{ id: string, working: boolean }>()
+    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>;