/* 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 AuthenticationTab = "flows" | "required-actions" | "policies"; export type AuthenticationParams = { realm: string; tab?: AuthenticationTab }; const AuthenticationSection = lazy(() => import("../AuthenticationSection")); export const AuthenticationRoute: AppRouteObject = { path: "/:realm/authentication", element: , handle: { access: ["view-realm", "view-identity-providers", "view-clients"], breadcrumb: (t) => t("authentication"), }, }; export const AuthenticationRouteWithTab: AppRouteObject = { ...AuthenticationRoute, path: "/:realm/authentication/:tab", }; export const toAuthentication = ( params: AuthenticationParams, ): Partial => { const path = params.tab ? AuthenticationRouteWithTab.path : AuthenticationRoute.path; return { pathname: generateEncodedPath(path, params), }; };