We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4339643 + 61bb34d commit c521cfaCopy full SHA for c521cfa
1 file changed
v2_app.py
@@ -19,7 +19,7 @@ def get_issues_by_owner_id_v2(owner, issue):
19
url = f"https://github.com/{owner}"
20
21
# import pdb;pdb.set_trace()
22
- actual_owner = SUPABASE_DB.client.table('dmp_orgs').select('id','name','repo_owner').like('name',owner).execute().data
+ actual_owner = SUPABASE_DB.client.table('dmp_issues').select('id','title','repo_owner').like('repo_owner',owner).execute().data
23
repo_owner =actual_owner[0]['repo_owner'] if actual_owner else ""
24
#create url with repo owner
25
url = f"https://github.com/{repo_owner}" if repo_owner else None
0 commit comments