keycloak-scim/js/apps/admin-ui/src/clients/routes/AddClient.tsx
Erik Jan de Wit 90a88976b6
this removes the prefixes for (#23137)
client-scopes
client-scopes-help
clients-help
clients
working towards fixing #23094
2023-09-13 10:05:17 -04:00

21 lines
635 B
TypeScript

import { lazy } from "react";
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),
});