/* eslint-disable */ // @ts-nocheck import { lazy } from "react"; import type { Path } from "react-router-dom"; import { generateEncodedPath } from "../../utils/generateEncodedPath"; import type { AppRouteObject } from "../../routes"; export type NewScopeParams = { realm: string; id: string }; const ScopeDetails = lazy(() => import("../authorization/ScopeDetails")); export const NewScopeRoute: AppRouteObject = { path: "/:realm/clients/:id/authorization/scope/new", element: , handle: { access: (accessChecker) => accessChecker.hasAny("manage-clients", "manage-authorization"), breadcrumb: (t) => t("createAuthorizationScope"), }, }; export const toNewScope = (params: NewScopeParams): Partial => ({ pathname: generateEncodedPath(NewScopeRoute.path, params), });