X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/c6d69dcff5142a7e0fc793be46534fe8b914db4a..b6ac7fe88d347582d39fffa002e300af222c578f:/src/services/link-service/link-service.ts diff --git a/src/services/link-service/link-service.ts b/src/services/link-service/link-service.ts index 4c12cd0b..db198e00 100644 --- a/src/services/link-service/link-service.ts +++ b/src/services/link-service/link-service.ts @@ -2,12 +2,13 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { CommonResourceService } from "../../common/api/common-resource-service"; -import { LinkResource } from "../../models/link"; +import { CommonResourceService } from "services/common-service/common-resource-service"; +import { LinkResource } from "models/link"; import { AxiosInstance } from "axios"; +import { ApiActions } from "services/api/api-actions"; -export class LinkService extends CommonResourceService { - constructor(serverApi: AxiosInstance) { - super(serverApi, "links"); +export class LinkService extends CommonResourceService { + constructor(serverApi: AxiosInstance, actions: ApiActions) { + super(serverApi, "links", actions); } -} \ No newline at end of file +}