refac: customer address db alter for gdpr compliance (#105)

This commit is contained in:
Manoj Ghorela
2022-12-12 00:19:33 +05:30
committed by GitHub
parent 585858ed6e
commit affa9fc35a
18 changed files with 76 additions and 60 deletions

View File

@ -27,7 +27,6 @@ pub async fn create_customer(
phone: customer_data.phone,
description: customer_data.description,
phone_country_code: customer_data.phone_country_code,
address: customer_data.address,
metadata: customer_data.metadata,
};
@ -92,7 +91,6 @@ pub async fn update_customer(
email: update_customer.email,
phone: update_customer.phone,
phone_country_code: update_customer.phone_country_code,
address: update_customer.address,
metadata: update_customer.metadata,
description: update_customer.description,
},