keycloak-scim/js/apps/admin-ui/src/client-scopes/routes/ClientScopes.tsx

22 lines
668 B
TypeScript
Raw Normal View History

2021-10-29 16:11:06 +00:00
import { lazy } from "react";
2023-01-18 12:09:49 +00:00
import type { Path } from "react-router-dom";
import { generatePath } from "react-router-dom";
import type { RouteDef } from "../../route-config";
export type ClientScopesParams = { realm: string };
const ClientScopesSection = lazy(() => import("../ClientScopesSection"));
export const ClientScopesRoute: RouteDef = {
path: "/:realm/client-scopes",
element: <ClientScopesSection />,
breadcrumb: (t) => t("client-scopes:clientScopeList"),
handle: {
access: "view-clients",
},
};
export const toClientScopes = (params: ClientScopesParams): Partial<Path> => ({
pathname: generatePath(ClientScopesRoute.path, params),
});