X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/dd89200ad6fdbfa337fdbab5f54def8712c6746c..c3644a28ef0a80c193361f56627bbe9e556aacaa:/src/services/keep-service/keep-service.ts diff --git a/src/services/keep-service/keep-service.ts b/src/services/keep-service/keep-service.ts index fd49823a..5a89ba57 100644 --- a/src/services/keep-service/keep-service.ts +++ b/src/services/keep-service/keep-service.ts @@ -2,12 +2,13 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { CommonResourceService } from "~/common/api/common-resource-service"; +import { CommonResourceService } from "~/services/common-service/common-resource-service"; import { AxiosInstance } from "axios"; -import { KeepResource } from "~/models/keep"; +import { KeepServiceResource } from "~/models/keep-services"; +import { ApiActions } from "~/services/api/api-actions"; -export class KeepService extends CommonResourceService { - constructor(serverApi: AxiosInstance) { - super(serverApi, "keep_services"); +export class KeepService extends CommonResourceService { + constructor(serverApi: AxiosInstance, actions: ApiActions) { + super(serverApi, "keep_services", actions); } -} +} \ No newline at end of file