refs #13535 Merge branch '13535-tree-component' into 13610-projects-hierarchy
[arvados-workbench2.git] / src / store / project / project-action.ts
index 8d57d2b932f5345dad6d1010891942395ce07766..2101619515a0c197855425667b28910581165df7 100644 (file)
@@ -7,7 +7,10 @@ import { default as unionize, ofType, UnionOf } from "unionize";
 
 const actions = unionize({
     CREATE_PROJECT: ofType<Project>(),
-    REMOVE_PROJECT: ofType<string>()
+    REMOVE_PROJECT: ofType<string>(),
+    PROJECTS_REQUEST: {},
+    PROJECTS_SUCCESS: ofType<Project[]>(),
+    TOGGLE_PROJECT_TREE_ITEM: ofType<string>()
 }, {
     tag: 'type',
     value: 'payload'