keycloak-scim/src/user-federation/routes/NewKerberosUserFederation.ts

20 lines
698 B
TypeScript
Raw Normal View History

import type { LocationDescriptorObject } from "history";
2021-10-29 16:11:06 +00:00
import { lazy } from "react";
import { generatePath } from "react-router-dom";
import type { RouteDef } from "../../route-config";
export type NewKerberosUserFederationParams = { realm: string };
export const NewKerberosUserFederationRoute: RouteDef = {
path: "/:realm/user-federation/kerberos/new",
2021-10-29 16:11:06 +00:00
component: lazy(() => import("../UserFederationKerberosSettings")),
breadcrumb: (t) => t("common:settings"),
access: "view-realm",
};
export const toNewKerberosUserFederation = (
params: NewKerberosUserFederationParams
): LocationDescriptorObject => ({
pathname: generatePath(NewKerberosUserFederationRoute.path, params),
});