fixed conflicts + link to ssh-keys panel
[arvados-workbench2.git] / src / routes / routes.ts
index 5dbecb45245f566d83e1fbb63cb45c43edeca3df..c9c2ae20e1eff73e55ae7d76b6e52aa3c2658f00 100644 (file)
@@ -20,7 +20,8 @@ export const Routes = {
     SHARED_WITH_ME: '/shared-with-me',
     RUN_PROCESS: '/run-process',
     WORKFLOWS: '/workflows',
-    SEARCH_RESULTS: '/search-results'
+    SEARCH_RESULTS: '/search-results',
+    SSH_KEYS: `/ssh-keys`
 };
 
 export const getResourceUrl = (uuid: string) => {
@@ -79,4 +80,7 @@ export const matchSearchResultsRoute = (route: string) =>
     matchPath<ResourceRouteParams>(route, { path: Routes.SEARCH_RESULTS });
 
 export const matchRepositoriesRoute = (route: string) =>
-    matchPath<ResourceRouteParams>(route, { path: Routes.REPOSITORIES });
\ No newline at end of file
+    matchPath<ResourceRouteParams>(route, { path: Routes.REPOSITORIES });
+    
+export const matchSshKeysRoute = (route: string) =>
+    matchPath(route, { path: Routes.SSH_KEYS });