We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e3de42 commit f5cfe73Copy full SHA for f5cfe73
app.py
@@ -199,7 +199,7 @@ def get_issues_by_owner(owner):
199
type: string
200
"""
201
try:
202
- response = SupabaseInterface().get_instance().client.table('dmp_issue_updates').select('*').eq('owner', owner).order('comment_updated_at', desc=True).execute()
+ response = SupabaseInterface().get_instance().client.table('dmp_issue_updates').select('*').eq('org_name', owner).order('comment_updated_at', desc=True).execute()
203
if not response.data:
204
return jsonify({'error': "No data found"}), 200
205
data = response.data[0]
0 commit comments