Update Resource kind reference, update missing component props in tests
[arvados-workbench2.git] / src / services / services.ts
index 47a24b344aaa7d43c0f257d3c47aabd526995368..143e97bdaf2dbbeff82b3e2cb5b23a691a0505e0 100644 (file)
@@ -3,9 +3,10 @@
 // SPDX-License-Identifier: AGPL-3.0
 
 import AuthService from "./auth-service/auth-service";
+import GroupsService from "./groups-service/groups-service";
+import { serverApi } from "../common/api/server-api";
 import ProjectService from "./project-service/project-service";
-import CollectionService from "./collection-service/collection-service";
 
 export const authService = new AuthService();
-export const projectService = new ProjectService();
-export const collectionService = new CollectionService();
+export const groupsService = new GroupsService(serverApi);
+export const projectService = new ProjectService(serverApi);