Merge branch 'master' into 14452-my-account
[arvados-workbench2.git] / src / routes / routes.ts
index a27b4274c707002a57b5a358d5aecbb9e03c6385..71d920ab3e4d984dcf126a5aaf6b439431dde9d7 100644 (file)
@@ -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