Merge branch 'master' into 14452-my-account
[arvados-workbench2.git] / src / routes / routes.ts
index 71cdfdacad218da9ea51cf636ffacd2cf95916ad..a27b4274c707002a57b5a358d5aecbb9e03c6385 100644 (file)
@@ -22,7 +22,8 @@ export const Routes = {
     VIRTUAL_MACHINES: '/virtual-machines',
     WORKFLOWS: '/workflows',
     SEARCH_RESULTS: '/search-results',
-    SSH_KEYS: `/ssh-keys`
+    SSH_KEYS: `/ssh-keys`,
+    MY_ACCOUNT: '/my-account'
 };
 
 export const getResourceUrl = (uuid: string) => {
@@ -88,3 +89,6 @@ export const matchRepositoriesRoute = (route: string) =>
     
 export const matchSshKeysRoute = (route: string) =>
     matchPath(route, { path: Routes.SSH_KEYS });
+
+export const matchMyAccountRoute = (route: string) =>
+    matchPath(route, { path: Routes.MY_ACCOUNT });