X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/2cfb56ef5060cbad461062690fad650f15c49731..9eaee66663fa21962f46e301ba6257ab63a9b10c:/src/routes/routes.ts diff --git a/src/routes/routes.ts b/src/routes/routes.ts index d5041976..b00b9fe2 100644 --- a/src/routes/routes.ts +++ b/src/routes/routes.ts @@ -19,7 +19,8 @@ export const Routes = { SHARED_WITH_ME: '/shared-with-me', RUN_PROCESS: '/run-process', WORKFLOWS: '/workflows', - SEARCH_RESULTS: '/search' + SEARCH_RESULTS: '/search-results', + SSH_KEYS: `/ssh-keys` }; export const getResourceUrl = (uuid: string) => { @@ -76,3 +77,6 @@ export const matchWorkflowRoute = (route: string) => export const matchSearchResultsRoute = (route: string) => matchPath(route, { path: Routes.SEARCH_RESULTS }); + +export const matchSshKeysRoute = (route: string) => + matchPath(route, { path: Routes.SSH_KEYS }); \ No newline at end of file