address: add a new address to a person

This commit is contained in:
nobohan
2021-06-15 07:49:35 +02:00
parent c378f59f5a
commit 7c26f0a56c
9 changed files with 181 additions and 50 deletions

View File

@@ -6,8 +6,6 @@
* @body Object - dictionary with changes to post
*/
export const postAddressToHousehold = (householdId, addressId) => {
console.log(householdId);
console.log(addressId);
const body = {
'id': addressId
};
@@ -22,3 +20,4 @@ export const postAddressToHousehold = (householdId, addressId) => {
throw Error('Error with request resource response');
});
};