90a88976b6
client-scopes client-scopes-help clients-help clients working towards fixing #23094
21 lines
635 B
TypeScript
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),
|
|
});
|