/* eslint-disable */ // @ts-nocheck import { lazy } from "react"; import type { Path } from "react-router-dom"; import { generateEncodedPath } from "../../utils/generateEncodedPath"; import type { AppRouteObject } from "../../routes"; export type WorkflowsParams = { realm: string }; const WorkflowsSection = lazy(() => import("../WorkflowsSection")); export const WorkflowsRoute: AppRouteObject = { path: "/:realm/workflows", element: , handle: { access: ({ hasAny }) => hasAny("realm-admin", "admin"), breadcrumb: (t) => t("workflows"), }, }; export const toWorkflows = (params: WorkflowsParams): Partial => ({ pathname: generateEncodedPath(WorkflowsRoute.path, params), });