next conflicts
[arvados-workbench2.git] / src / routes / routes.ts
index 7f15a8de74bb52c47e67a5f1e608a1e3ab0df9cf..88dfd46951945928336079381035e70e1733ae07 100644 (file)
@@ -26,6 +26,7 @@ export const Routes = {
     MY_ACCOUNT: '/my-account',
     KEEP_SERVICES: `/keep-services`,
     COMPUTE_NODES: `/nodes`,
+    USERS: '/users',
     API_CLIENT_AUTHORIZATIONS: `/api_client_authorizations`
 };
 
@@ -86,10 +87,10 @@ export const matchSearchResultsRoute = (route: string) =>
 
 export const matchVirtualMachineRoute = (route: string) =>
     matchPath<ResourceRouteParams>(route, { path: Routes.VIRTUAL_MACHINES });
-    
+
 export const matchRepositoriesRoute = (route: string) =>
     matchPath<ResourceRouteParams>(route, { path: Routes.REPOSITORIES });
-    
+
 export const matchSshKeysRoute = (route: string) =>
     matchPath(route, { path: Routes.SSH_KEYS });
 
@@ -99,8 +100,11 @@ export const matchMyAccountRoute = (route: string) =>
 export const matchKeepServicesRoute = (route: string) =>
     matchPath(route, { path: Routes.KEEP_SERVICES });
 
+export const matchUsersRoute = (route: string) =>
+    matchPath(route, { path: Routes.USERS });
+
 export const matchComputeNodesRoute = (route: string) =>
     matchPath(route, { path: Routes.COMPUTE_NODES });
 
 export const matchApiClientAuthorizationsRoute = (route: string) =>
-    matchPath(route, { path: Routes.API_CLIENT_AUTHORIZATIONS });
\ No newline at end of file
+    matchPath(route, { path: Routes.API_CLIENT_AUTHORIZATIONS });