From 055ea45587dff85b5914c2e549fc768d787c6dc7 Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Tue, 7 Jan 2025 11:30:25 -0500 Subject: [PATCH] FIND_USER_DETAIL --- services/web/project/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/services/web/project/__init__.py b/services/web/project/__init__.py index 8b494ee..14cfccd 100644 --- a/services/web/project/__init__.py +++ b/services/web/project/__init__.py @@ -349,6 +349,7 @@ def verify_register(): user_uid = data['user']['uid'] #'a4b75649-e3c5-424f-bcdb-5481e625d24b' FIND_USER_DETAIL= "SELECT email, firstname,lastname,uid FROM members_pending WHERE uid::text = '"+user_uid+"'" + print(FIND_USER_DETAIL) with connection: with connection.cursor(cursor_factory=psycopg2.extras.DictCursor) as cursor: cursor.execute(FIND_USER_DETAIL)