f1c7e5ecb3
* Create custom user federation providers page fixes: #1722 * added breadcrumb
20 lines
718 B
TypeScript
20 lines
718 B
TypeScript
import type { LocationDescriptorObject } from "history";
|
|
import { lazy } from "react";
|
|
import { generatePath } from "react-router-dom";
|
|
import type { RouteDef } from "../../route-config";
|
|
|
|
export type NewLdapUserFederationParams = { realm: string };
|
|
|
|
export const NewLdapUserFederationRoute: RouteDef = {
|
|
path: "/:realm/user-federation/ldap/new",
|
|
component: lazy(() => import("../UserFederationLdapSettings")),
|
|
breadcrumb: (t) =>
|
|
t("user-federation:addProvider", { provider: "LDAP", count: 1 }),
|
|
access: "view-realm",
|
|
};
|
|
|
|
export const toNewLdapUserFederation = (
|
|
params: NewLdapUserFederationParams
|
|
): LocationDescriptorObject => ({
|
|
pathname: generatePath(NewLdapUserFederationRoute.path, params),
|
|
});
|