mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-02 03:19:43 +00:00
9 lines
297 B
JavaScript
9 lines
297 B
JavaScript
import { fetchResults } from "ChillMainAssets/lib/api/apiMethods.ts";
|
|
|
|
const fetchHouseholdByAddressReference = async (reference) => {
|
|
const url = `/api/1.0/person/household/by-address-reference/${reference.id}.json`;
|
|
return fetchResults(url);
|
|
};
|
|
|
|
export { fetchHouseholdByAddressReference };
|