Skip to content
Snippets Groups Projects
Unverified Commit ff87c45d authored by Alexander J Sheehan's avatar Alexander J Sheehan Committed by GitHub
Browse files

Merge pull request #26180 from edx/alex-sheehan-edx/gradebook-view-bugfix

Adding collected structure to the course grade read
parents e0e03dec 12fd104e
No related branches found
Tags release-2021-01-28-09.00
No related merge requests found
......@@ -530,8 +530,11 @@ class GradebookView(GradeViewMixin, PaginatedAPIView):
if request.GET.get('username'):
with self._get_user_or_raise(request, course_key) as grade_user:
course_grade = CourseGradeFactory().read(grade_user, course)
course_grade = CourseGradeFactory().read(
grade_user,
course,
collected_block_structure=course_data.collected_structure
)
entry = self._gradebook_entry(grade_user, course, graded_subsections, course_grade)
serializer = StudentGradebookEntrySerializer(entry)
return Response(serializer.data)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment