Replaced getting top project list with more generic version
[arvados.git] / src / store / project / project-action.ts
index 8d57d2b932f5345dad6d1010891942395ce07766..c88edb60df8d0c764563ee48c027289859214567 100644 (file)
@@ -7,7 +7,9 @@ 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[]>()
 }, {
     tag: 'type',
     value: 'payload'