X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/59ee572e791985a36bdd2015c9b494145109e8ed..042fbd69136d8f7090ac0295645d24dbc2a9f4a4:/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 77d06d93..17ee522e 100644 --- a/src/services/keep-service/keep-service.ts +++ b/src/services/keep-service/keep-service.ts @@ -5,9 +5,10 @@ import { CommonResourceService } from "~/services/common-service/common-resource-service"; import { AxiosInstance } from "axios"; import { KeepResource } from "~/models/keep"; +import { ApiActions } from "~/services/api/api-actions"; export class KeepService extends CommonResourceService { - constructor(serverApi: AxiosInstance) { - super(serverApi, "keep_services"); + constructor(serverApi: AxiosInstance, actions: ApiActions) { + super(serverApi, "keep_services", actions); } }