Skip to content
Open
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
14 changes: 8 additions & 6 deletions djAerolith/wordwalls/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,12 +211,14 @@ def wrap(request, *args, **kwargs):
)
parsed_req["quiz_time_secs"] = quiz_time_secs

parsed_req["questions_per_round"] = body.get("questionsPerRound", 50)
if (
parsed_req["questions_per_round"] > 200
or parsed_req["questions_per_round"] < 10
):
# Validate questions_per_round
questions_per_round = body.get("questionsPerRound", 50)
if not isinstance(questions_per_round, int):
return bad_request("Questions per round must be an integer.")
if questions_per_round > 200 or questions_per_round < 10:
return bad_request("Questions per round must be between 10 and 200.")
parsed_req["questions_per_round"] = questions_per_round

parsed_req["search_criteria"] = body.get("searchCriteria", [])
parsed_req["list_option"] = body.get("listOption")
parsed_req["selectedList"] = body.get("selectedList")
Expand Down Expand Up @@ -516,4 +518,4 @@ def date_from_str(dt):
if ch_date > today:
ch_date = today

return ch_date
return ch_date