Merge branch 'master' into 14452-my-account
[arvados-workbench2.git] / src / services / keep-service / keep-service.ts
index fd49823a4730a29b8a1c45e3271de991650d9d09..5a89ba57b49652a26d086620d4ca8e8bbac74ec5 100644 (file)
@@ -2,12 +2,13 @@
 //\r
 // SPDX-License-Identifier: AGPL-3.0\r
 \r
-import { CommonResourceService } from "~/common/api/common-resource-service";\r
+import { CommonResourceService } from "~/services/common-service/common-resource-service";\r
 import { AxiosInstance } from "axios";\r
-import { KeepResource } from "~/models/keep";\r
+import { KeepServiceResource } from "~/models/keep-services";\r
+import { ApiActions } from "~/services/api/api-actions";\r
 \r
-export class KeepService extends CommonResourceService<KeepResource> {\r
-    constructor(serverApi: AxiosInstance) {\r
-        super(serverApi, "keep_services");\r
+export class KeepService extends CommonResourceService<KeepServiceResource> {\r
+    constructor(serverApi: AxiosInstance, actions: ApiActions) {\r
+        super(serverApi, "keep_services", actions);\r
     }\r
-}\r
+}
\ No newline at end of file