Add ssh keys panel
[arvados-workbench2.git] / src / routes / routes.ts
index e5f3493539e3cbaae317e95fc1b38d3f89cb032f..b00b9fe23f66d43e2d82f1acd2d94ee4049e8cda 100644 (file)
@@ -19,7 +19,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) => {
@@ -76,3 +77,6 @@ export const matchWorkflowRoute = (route: string) =>
 
 export const matchSearchResultsRoute = (route: string) =>
     matchPath<ResourceRouteParams>(route, { path: Routes.SEARCH_RESULTS });
+
+export const matchSshKeysRoute = (route: string) =>
+    matchPath(route, { path: Routes.SSH_KEYS });
\ No newline at end of file