X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/c324b64f3b26e79b4640b6f0cf55671f1a261bca..400481f862c9de54569daabf9de167601dc887bc:/src/services/services.ts diff --git a/src/services/services.ts b/src/services/services.ts index 9c764b09..806fcae1 100644 --- a/src/services/services.ts +++ b/src/services/services.ts @@ -21,6 +21,8 @@ import { ContainerRequestService } from './container-request-service/container-r import { ContainerService } from './container-service/container-service'; import { LogService } from './log-service/log-service'; import { ApiActions } from "~/services/api/api-actions"; +import { WorkflowService } from "~/services/workflow-service/workflow-service"; +import { SearchService } from '~/services/search-service/search-service'; export type ServiceRepository = ReturnType; @@ -39,6 +41,7 @@ export const createServices = (config: Config, actions: ApiActions) => { const logService = new LogService(apiClient, actions); const projectService = new ProjectService(apiClient, actions); const userService = new UserService(apiClient, actions); + const workflowService = new WorkflowService(apiClient, actions); const ancestorsService = new AncestorService(groupsService, userService); const authService = new AuthService(apiClient, config.rootUrl, actions); @@ -46,6 +49,7 @@ export const createServices = (config: Config, actions: ApiActions) => { const collectionFilesService = new CollectionFilesService(collectionService); const favoriteService = new FavoriteService(linkService, groupsService); const tagService = new TagService(linkService); + const searchService = new SearchService(); return { ancestorsService, @@ -61,9 +65,11 @@ export const createServices = (config: Config, actions: ApiActions) => { linkService, logService, projectService, + searchService, tagService, userService, webdavClient, + workflowService, }; };