UNPKG

@keycloakify/keycloak-admin-ui

Version:
16 lines 600 B
import { jsx as _jsx } from "react/jsx-runtime"; import { lazy } from "react"; import { generateEncodedPath } from "../../utils/generateEncodedPath"; const CreateFlow = lazy(() => import("../../authentication/form/CreateFlow")); export const CreateFlowRoute = { path: "/:realm/authentication/flows/create", element: _jsx(CreateFlow, {}), breadcrumb: (t) => t("createFlow"), handle: { access: "manage-authorization", }, }; export const toCreateFlow = (params) => ({ pathname: generateEncodedPath(CreateFlowRoute.path, params), }); //# sourceMappingURL=CreateFlow.js.map