mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-30 22:16:14 +00:00
11 lines
298 B
JavaScript
11 lines
298 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
|
|
};
|