UNPKG

@keycloakify/keycloak-admin-ui

Version:
16 lines 612 B
import { jsx as _jsx } from "react/jsx-runtime"; import { lazy } from "react"; import { generateEncodedPath } from "../../utils/generateEncodedPath"; const ClientScopesSection = lazy(() => import("../../client-scopes/ClientScopesSection")); export const ClientScopesRoute = { path: "/:realm/client-scopes", element: _jsx(ClientScopesSection, {}), breadcrumb: (t) => t("clientScopeList"), handle: { access: "view-clients", }, }; export const toClientScopes = (params) => ({ pathname: generateEncodedPath(ClientScopesRoute.path, params), }); //# sourceMappingURL=ClientScopes.js.map