keycloak-scim/src/clients/routes/DedicatedScopeDetails.ts

27 lines
811 B
TypeScript
Raw Normal View History

import type { LocationDescriptorObject } from "history";
import { lazy } from "react";
import { generatePath } from "react-router-dom";
import type { RouteDef } from "../../route-config";
export type DedicatedScopeTab = "mappers" | "scope";
export type DedicatedScopeDetailsParams = {
realm: string;
clientId: string;
tab?: DedicatedScopeTab;
};
export const DedicatedScopeDetailsRoute: RouteDef = {
path: "/:realm/clients/:clientId/clientScopes/dedicated/:tab?",
component: lazy(() => import("../scopes/DedicatedScopes")),
breadcrumb: (t) => t("clients:dedicatedScopes"),
2022-05-30 09:23:24 +00:00
access: "view-clients",
legacy: true,
};
export const toDedicatedScope = (
params: DedicatedScopeDetailsParams
): LocationDescriptorObject => ({
pathname: generatePath(DedicatedScopeDetailsRoute.path, params),
});