Clean up project-panel-actions code
[arvados-workbench2.git] / src / store / progress-indicator / progress-indicator-actions.ts
index 3712e41b6899578d1b41e8151620c82eba83b831..34a43d89287a7ca0e37fa2edddcdfd3eaa1fabf7 100644 (file)
@@ -5,9 +5,10 @@
 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>;