90a88976b6
client-scopes client-scopes-help clients-help clients working towards fixing #23094
25 lines
778 B
TypeScript
25 lines
778 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 CreateInitialAccessTokenParams = { realm: string };
|
|
|
|
const CreateInitialAccessToken = lazy(
|
|
() => import("../initial-access/CreateInitialAccessToken"),
|
|
);
|
|
|
|
export const CreateInitialAccessTokenRoute: AppRouteObject = {
|
|
path: "/:realm/clients/initialAccessToken/create",
|
|
element: <CreateInitialAccessToken />,
|
|
breadcrumb: (t) => t("createToken"),
|
|
handle: {
|
|
access: "manage-clients",
|
|
},
|
|
};
|
|
|
|
export const toCreateInitialAccessToken = (
|
|
params: CreateInitialAccessTokenParams,
|
|
): Partial<Path> => ({
|
|
pathname: generatePath(CreateInitialAccessTokenRoute.path, params),
|
|
});
|