Print data

This commit is contained in:
CHIEFSOFT\ameye
2025-01-08 08:21:40 -05:00
parent a499bbe544
commit 0a7565298f
+2
View File
@@ -377,6 +377,8 @@ def complete_register():
is_validated = validate.validate_complete_signup_data(data.get('username'), data.get('password'), data.get('country'))
if is_validated is not True:
return dict(message='Invalid data', data=None, error=is_validated), 400
print(data)
username= data.get('username')
password= data.get('password')
country= data.get('country')