keycloak-scim/js/apps/admin-ui/src/user-federation/routes/NewKerberosUserFederation.tsx

26 lines
779 B
TypeScript
Raw Normal View History

2021-10-29 16:11:06 +00:00
import { lazy } from "react";
2023-01-18 12:09:49 +00:00
import type { Path } from "react-router-dom";
import { generatePath } from "react-router-dom";
import type { AppRouteObject } from "../../routes";
export type NewKerberosUserFederationParams = { realm: string };
const UserFederationKerberosSettings = lazy(
() => import("../UserFederationKerberosSettings")
);
export const NewKerberosUserFederationRoute: AppRouteObject = {
path: "/:realm/user-federation/kerberos/new",
element: <UserFederationKerberosSettings />,
breadcrumb: (t) => t("common:settings"),
handle: {
access: "view-realm",
},
};
export const toNewKerberosUserFederation = (
params: NewKerberosUserFederationParams
): Partial<Path> => ({
pathname: generatePath(NewKerberosUserFederationRoute.path, params),
});