X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/54063448526c6eac346823d6cc66ba7a05f2cce7..33d05327f82870a6cff480b8d01e89ae75b70786:/src/routes/routes.ts diff --git a/src/routes/routes.ts b/src/routes/routes.ts index f447975b12..05f6663fe3 100644 --- a/src/routes/routes.ts +++ b/src/routes/routes.ts @@ -29,7 +29,8 @@ export const Routes = { KEEP_SERVICES: `/keep-services`, COMPUTE_NODES: `/nodes`, USERS: '/users', - API_CLIENT_AUTHORIZATIONS: `/api_client_authorizations` + API_CLIENT_AUTHORIZATIONS: `/api_client_authorizations`, + LINKS: '/links' }; export const getResourceUrl = (uuid: string) => { @@ -116,3 +117,6 @@ export const matchComputeNodesRoute = (route: string) => export const matchApiClientAuthorizationsRoute = (route: string) => matchPath(route, { path: Routes.API_CLIENT_AUTHORIZATIONS }); + +export const matchLinksRoute = (route: string) => + matchPath(route, { path: Routes.LINKS }); \ No newline at end of file