keycloak-scim/src/groups/routes/Groups.tsx

20 lines
560 B
TypeScript
Raw Normal View History

import type { LocationDescriptorObject } from "history";
2021-10-29 16:11:06 +00:00
import { lazy } from "react";
import { generatePath } from "react-router-dom";
import type { RouteDef } from "../../route-config";
export type GroupsParams = { realm: string };
export const GroupsRoute: RouteDef = {
path: "/:realm/groups",
2021-10-29 16:11:06 +00:00
component: lazy(() => import("../GroupsSection")),
access: "query-groups",
matchOptions: {
exact: false,
},
};
export const toGroups = (params: GroupsParams): LocationDescriptorObject => ({
pathname: generatePath(GroupsRoute.path, params),
});