X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/b8bba11c446b95f2e82a397e0c55486d16fbb97f..fa1f1c301a58d163e452ca9d14d326934a403f17:/src/services/services.ts diff --git a/src/services/services.ts b/src/services/services.ts index b0d3ba67c8..d524405fe6 100644 --- a/src/services/services.ts +++ b/src/services/services.ts @@ -24,9 +24,11 @@ import { ApiActions } from "~/services/api/api-actions"; import { WorkflowService } from "~/services/workflow-service/workflow-service"; import { SearchService } from '~/services/search-service/search-service'; import { PermissionService } from "~/services/permission-service/permission-service"; +import { VirtualMachinesService } from "~/services/virtual-machines-service/virtual-machines-service"; import { RepositoriesService } from '~/services/repositories-service/repositories-service'; import { AuthorizedKeysService } from '~/services/authorized-keys-service/authorized-keys-service'; import { VocabularyService } from '~/services/vocabulary-service/vocabulary-service'; +import { NodeService } from '~/services/node-service/node-service'; export type ServiceRepository = ReturnType; @@ -44,10 +46,12 @@ export const createServices = (config: Config, actions: ApiActions) => { const keepService = new KeepService(apiClient, actions); const linkService = new LinkService(apiClient, actions); const logService = new LogService(apiClient, actions); + const nodeService = new NodeService(apiClient, actions); const permissionService = new PermissionService(apiClient, actions); const projectService = new ProjectService(apiClient, actions); const repositoriesService = new RepositoriesService(apiClient, actions); const userService = new UserService(apiClient, actions); + const virtualMachineService = new VirtualMachinesService(apiClient, actions); const workflowService = new WorkflowService(apiClient, actions); const ancestorsService = new AncestorService(groupsService, userService); @@ -73,12 +77,14 @@ export const createServices = (config: Config, actions: ApiActions) => { keepService, linkService, logService, + nodeService, permissionService, projectService, repositoriesService, searchService, tagService, userService, + virtualMachineService, webdavClient, workflowService, vocabularyService,