Skip to content

Commit

Permalink
CHG reduce submission limit again
Browse files Browse the repository at this point in the history
  • Loading branch information
wabscale committed Sep 20, 2023
1 parent 187857a commit 83d12dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/anubis/views/public/submissions.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def public_submissions():
assignment_id = request.args.get("assignmentId", default=None)

# Get the limit and offset for submissions query
limit: int = get_number_arg("limit", default_value=10)
limit: int = get_number_arg("limit", default_value=5)
offset: int = get_number_arg("offset", default_value=0)

# Load current user
Expand Down

0 comments on commit 83d12dd

Please sign in to comment.