keycloak-scim/src/clients/routes/AddClient.ts

20 lines
604 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 AddClientParams = { realm: string };
export const AddClientRoute: RouteDef = {
path: "/:realm/clients/add-client",
2021-10-29 16:11:06 +00:00
component: lazy(() => import("../add/NewClientForm")),
breadcrumb: (t) => t("clients:createClient"),
access: "manage-clients",
};
export const toAddClient = (
params: AddClientParams
): LocationDescriptorObject => ({
pathname: generatePath(AddClientRoute.path, params),
});