UNPKG

@keycloakify/keycloak-admin-ui

Version:
16 lines 622 B
import { jsx as _jsx } from "react/jsx-runtime"; import { lazy } from "react"; import { generateEncodedPath } from "../../utils/generateEncodedPath"; const CreateClientScope = lazy(() => import("../../client-scopes/CreateClientScope")); export const NewClientScopeRoute = { path: "/:realm/client-scopes/new", element: _jsx(CreateClientScope, {}), breadcrumb: (t) => t("createClientScope"), handle: { access: "manage-clients", }, }; export const toNewClientScope = (params) => ({ pathname: generateEncodedPath(NewClientScopeRoute.path, params), }); //# sourceMappingURL=NewClientScope.js.map