Update dependencies/database.py
Browse files- dependencies/database.py +2 -2
dependencies/database.py
CHANGED
@@ -79,8 +79,8 @@ class SupabaseDb:
|
|
79 |
|
80 |
supabase = self.supabase_client()
|
81 |
response = (
|
82 |
-
supabase.table("
|
83 |
-
.insert({"access_token": access_token,"refresh_token":refresh_token ,"
|
84 |
.execute()
|
85 |
)
|
86 |
print("Inserting the access and refresh tokens")
|
|
|
79 |
|
80 |
supabase = self.supabase_client()
|
81 |
response = (
|
82 |
+
supabase.table("user_gmail_token_details")
|
83 |
+
.insert({"access_token": access_token,"refresh_token":refresh_token ,"email":email })
|
84 |
.execute()
|
85 |
)
|
86 |
print("Inserting the access and refresh tokens")
|