This commit is contained in:
CHIEFSOFT\ameye
2025-11-27 15:48:18 -05:00
parent 7ce2f50375
commit bb73540b59
3 changed files with 8 additions and 4 deletions
+2 -2
View File
@@ -495,14 +495,14 @@ class AccountService(BaseService):
account_name = str(validated_data.get('account_name'))
phone = str(validated_data.get('phone'))
full_address = str(validated_data.get('full_address'))
email = str(validated_data.get('email'))
# email = str(validated_data.get('email'))
profile_data = {
"firstname": firstname,
"lastname": lastname,
"account_name": account_name,
"phone": phone,
"full_address": full_address,
"email": email,
# "email": email,
}
Members.set_member_update_profile(uid,profile_data)