Add VOCABULARY_URL to config schema in readme
[arvados-workbench2.git] / src / services / keep-service / keep-service.ts
index 77d06d933d37ba334e5205a70adde87d127d83d4..17ee522e4dea00d7c6ecea813a3111a43f64fb4a 100644 (file)
@@ -5,9 +5,10 @@
 import { CommonResourceService } from "~/services/common-service/common-resource-service";\r
 import { AxiosInstance } from "axios";\r
 import { KeepResource } from "~/models/keep";\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
+    constructor(serverApi: AxiosInstance, actions: ApiActions) {\r
+        super(serverApi, "keep_services", actions);\r
     }\r
 }\r