Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app/grad_2025/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ class Grad2025Service:

async def get_univ_majors(self) -> list[Grad2025Read]:
univ_majors = await self.grad_2025_repository.list_univ_majors()
univ_majors.sort(key=lambda univ_major: univ_major.name)
return [Grad2025Read.from_grad_2025(univ_major) for univ_major in univ_majors]

async def search_posts(
Expand Down
Loading