Skip to content

Commit

Permalink
Allow nulls for groupset param
Browse files Browse the repository at this point in the history
  • Loading branch information
marcospri committed Sep 20, 2021
1 parent 7caf0c9 commit a2e93ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lms/validation/_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,4 @@ class File(Schema):
ext_lti_assignment_id = fields.Str(required=True)
course_id = fields.Integer(required=True)
content = fields.Nested(Content, required=True)
groupset = fields.Integer(required=False)
groupset = fields.Integer(required=False, allow_none=True)

0 comments on commit a2e93ea

Please sign in to comment.