Skip to content

Commit

Permalink
Allow null score
Browse files Browse the repository at this point in the history
  • Loading branch information
stevebrownlee committed Feb 19, 2024
1 parent 0c46711 commit 178003c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LearningAPI/views/student_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ class CohortStudentSerializer(serializers.Serializer):
book_id = serializers.IntegerField()
book_index = serializers.IntegerField()
book_name = serializers.CharField(max_length=100)
score = serializers.IntegerField()
score = serializers.IntegerField(allow_null=True)
notes = serializers.ListField()
proposals = serializers.ListField()

Expand Down

0 comments on commit 178003c

Please sign in to comment.