26 lines
707 B
TypeScript
26 lines
707 B
TypeScript
|
import type { LocationDescriptorObject } from "history";
|
||
|
import { generatePath } from "react-router-dom";
|
||
|
import type { RouteDef } from "../../route-config";
|
||
|
import {
|
||
|
AddIdentityProvider,
|
||
|
IdentityProviderCrumb,
|
||
|
} from "../add/AddIdentityProvider";
|
||
|
|
||
|
export type IdentityProviderParams = {
|
||
|
realm: string;
|
||
|
id: string;
|
||
|
};
|
||
|
|
||
|
export const IdentityProviderRoute: RouteDef = {
|
||
|
path: "/:realm/identity-providers/:id",
|
||
|
component: AddIdentityProvider,
|
||
|
breadcrumb: () => IdentityProviderCrumb,
|
||
|
access: "manage-identity-providers",
|
||
|
};
|
||
|
|
||
|
export const toIdentityProvider = (
|
||
|
params: IdentityProviderParams
|
||
|
): LocationDescriptorObject => ({
|
||
|
pathname: generatePath(IdentityProviderRoute.path, params),
|
||
|
});
|