26 lines
756 B
TypeScript
26 lines
756 B
TypeScript
import { lazy } from "react";
|
|
import type { Path } from "react-router-dom";
|
|
import { generatePath } from "react-router-dom";
|
|
import type { RouteDef } from "../../route-config";
|
|
|
|
export type UserFederationKerberosParams = {
|
|
realm: string;
|
|
id: string;
|
|
};
|
|
|
|
const UserFederationKerberosSettings = lazy(
|
|
() => import("../UserFederationKerberosSettings")
|
|
);
|
|
|
|
export const UserFederationKerberosRoute: RouteDef = {
|
|
path: "/:realm/user-federation/kerberos/:id",
|
|
element: <UserFederationKerberosSettings />,
|
|
breadcrumb: (t) => t("common:settings"),
|
|
access: "view-realm",
|
|
};
|
|
|
|
export const toUserFederationKerberos = (
|
|
params: UserFederationKerberosParams
|
|
): Partial<Path> => ({
|
|
pathname: generatePath(UserFederationKerberosRoute.path, params),
|
|
});
|