keycloak-scim/js/apps/admin-ui/src/clients/routes/AddClient.tsx

22 lines
635 B
TypeScript
Raw Normal View History

2021-10-29 16:11:06 +00:00
import { lazy } from "react";
2023-01-18 12:09:49 +00:00
import type { Path } from "react-router-dom";
import { generatePath } from "react-router-dom";
import type { AppRouteObject } from "../../routes";
export type AddClientParams = { realm: string };
const NewClientForm = lazy(() => import("../add/NewClientForm"));
export const AddClientRoute: AppRouteObject = {
path: "/:realm/clients/add-client",
element: <NewClientForm />,
breadcrumb: (t) => t("createClient"),
handle: {
access: "manage-clients",
},
};
export const toAddClient = (params: AddClientParams): Partial<Path> => ({
pathname: generatePath(AddClientRoute.path, params),
});