CHIEFSOFT\ameye
2026-02-14 14:40:36 -05:00
parent a8f94b9017
commit 2f03fd8992
+2 -2
View File
@@ -245,7 +245,7 @@ class LoginService(BaseService):
)
# price_create_result = StripeIntegration.create_product('AmeyeTEST', 9999)
# logger.info(f"Inside Stripe_Product ===== : {price_create_result}")
file_url = BaseService.get_profile_picture_url(member.profile_picture)
# Simulate processing
response_data = {
"member_id": member.id,
@@ -256,7 +256,7 @@ class LoginService(BaseService):
"lastname": member.lastname,
"room": member.uid,
"profile_completed": member.profile_completed,
"picture": 'https://media.mermsemr.com/media/show/merms-profile',
"picture": 'https://media.mermsemr.com/media/show/merms-profile' if file_url == '' else file_url,
"token": user_token
}
padded_member_id = str(member.id).zfill(6)