X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/fefd4455dd540168c65e6f8e82784662d09cff28..HEAD:/src/services/link-service/link-service.ts?ds=sidebyside 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 +}