2021-07-26 13:29:26 +00:00
|
|
|
import type { LocationDescriptorObject } from "history";
|
2021-10-29 16:11:06 +00:00
|
|
|
import { lazy } from "react";
|
2021-07-26 13:29:26 +00:00
|
|
|
import { generatePath } from "react-router-dom";
|
|
|
|
import type { RouteDef } from "../../route-config";
|
|
|
|
|
|
|
|
export type UserFederationsKerberosParams = { realm: string };
|
|
|
|
|
|
|
|
export const UserFederationsKerberosRoute: RouteDef = {
|
|
|
|
path: "/:realm/user-federation/kerberos",
|
2021-10-29 16:11:06 +00:00
|
|
|
component: lazy(() => import("../UserFederationSection")),
|
2021-07-26 13:29:26 +00:00
|
|
|
access: "view-realm",
|
|
|
|
};
|
|
|
|
|
|
|
|
export const toUserFederationsKerberos = (
|
|
|
|
params: UserFederationsKerberosParams
|
|
|
|
): LocationDescriptorObject => ({
|
|
|
|
pathname: generatePath(UserFederationsKerberosRoute.path, params),
|
|
|
|
});
|