From 6fd05a193c7bbf98cd196aef74f26696c4b52855 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Tue, 7 Jan 2025 09:48:41 -0500 Subject: [PATCH] fix read data --- services/web/project/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/services/web/project/__init__.py b/services/web/project/__init__.py index 9cb187a..9dc783c 100644 --- a/services/web/project/__init__.py +++ b/services/web/project/__init__.py @@ -345,6 +345,9 @@ def verify_register(): return jsonify({'status': 'INVALID', 'message': 'Link is invalid'}),403 print(data) + print(data['user']) + print(data['user']['uid']) + user_uid = 'a4b75649-e3c5-424f-bcdb-5481e625d24b' FIND_USER_DETAIL= "SELECT firstname,lastname,email FROM members_pending WHERE uid::text = '"+user_uid+"'" with connection: