init api token, add model and service, create dialogs and panel
[arvados-workbench2.git] / src / routes / routes.ts
index 8f8fa06bd0379232d6da87ea6a47dad5673b811d..1fda25d0afca45853b6a8eadd3fd24a27fc04cfe 100644 (file)
@@ -24,7 +24,8 @@ export const Routes = {
     SEARCH_RESULTS: '/search-results',
     SSH_KEYS: `/ssh-keys`,
     KEEP_SERVICES: `/keep-services`,
-    COMPUTE_NODES: `/nodes`
+    COMPUTE_NODES: `/nodes`,
+    API_CLIENT_AUTHORIZATIONS: `/api_client_authorizations`
 };
 
 export const getResourceUrl = (uuid: string) => {
@@ -95,4 +96,7 @@ 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
+    matchPath(route, { path: Routes.COMPUTE_NODES });
+
+export const matchApiClientAuthorizationsRoute = (route: string) =>
+    matchPath(route, { path: Routes.API_CLIENT_AUTHORIZATIONS });
\ No newline at end of file