X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/4ea2ff188ec745966387ce8bbe14880bfeede863..a1e2b8ba77e4a7273940a3fc542bc42e282618a7:/src/routes/routes.ts diff --git a/src/routes/routes.ts b/src/routes/routes.ts index a27b4274..71d920ab 100644 --- a/src/routes/routes.ts +++ b/src/routes/routes.ts @@ -23,7 +23,9 @@ export const Routes = { WORKFLOWS: '/workflows', SEARCH_RESULTS: '/search-results', SSH_KEYS: `/ssh-keys`, - MY_ACCOUNT: '/my-account' + MY_ACCOUNT: '/my-account', + KEEP_SERVICES: `/keep-services`, + COMPUTE_NODES: `/nodes` }; export const getResourceUrl = (uuid: string) => { @@ -92,3 +94,9 @@ export const matchSshKeysRoute = (route: string) => export const matchMyAccountRoute = (route: string) => matchPath(route, { path: Routes.MY_ACCOUNT }); + +export const matchKeepServicesRoute = (route: string) => + matchPath(route, { path: Routes.KEEP_SERVICES }); + +export const matchComputeNodesRoute = (route: string) => + matchPath(route, { path: Routes.COMPUTE_NODES }); \ No newline at end of file