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

27 lines
756 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 { 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),
});