Skip to content

Commit

Permalink
Reversing the projects returned
Browse files Browse the repository at this point in the history
  • Loading branch information
LanternNassi committed Jul 4, 2024
1 parent af4deec commit 0c871f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controllers/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ def get(self, user_id):
).all()

pagination_meta_data, projects = paginate(
user.projects, per_page, page)
user.projects[::-1], per_page, page)

user_projects, errors = project_schema.dumps(
projects)
Expand Down

0 comments on commit 0c871f4

Please sign in to comment.