Skip to content

Commit 51f650c

Browse files
praveenkumar911Shreyash-work-emSrijan-SS02jaanbaazpraveenkumar911
authored
Dev (#69)
* Feature/dmp 2025 (#66) * 1. Added year param in fetching issues * Removed submodule * Readded submodule --------- Co-authored-by: Srijan Srivastava <[email protected]> Co-authored-by: jaanbaaz <[email protected]> * 27/alpha (#68) * Update .dockerignore * Feature/dmp 2025 (#66) (#67) * 1. Added year param in fetching issues * Removed submodule * Readded submodule --------- Co-authored-by: Srijan Srivastava <[email protected]> Co-authored-by: jaanbaaz <[email protected]> * added alphabetical order --------- Co-authored-by: Srijan Srivastava <[email protected]> Co-authored-by: jaanbaaz <[email protected]> Co-authored-by: Shreyash-work-em <[email protected]> Co-authored-by: praveenkumar911 <[email protected]> --------- Co-authored-by: Shreyash-work-em <[email protected]> Co-authored-by: Srijan Srivastava <[email protected]> Co-authored-by: jaanbaaz <[email protected]> Co-authored-by: praveenkumar911 <[email protected]>
1 parent a075170 commit 51f650c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

app.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ async def get_issues():
105105
'org_name': result.org_name,
106106
'issues': result.issues
107107
})
108-
108+
# Sort response by org_name alphabetically
109+
response.sort(key=lambda x: x['org_name'].lower())
109110
return jsonify({"issues": response})
110111

111112
except Exception as e:

0 commit comments

Comments
 (0)