Files
Fulfillment-Frontend/src/pages/AdminPage/hooks/useRolesList.tsx
2024-07-20 09:32:01 +03:00

9 lines
285 B
TypeScript

import ObjectList from "../../../hooks/objectList.tsx";
import {RoleService} from "../../../client";
const useRolesList = () => ObjectList({
queryFn: RoleService.getAllRoles,
getObjectsFn: response => response.roles,
queryKey: "getAllRoles"
})
export default useRolesList;