Skip to content

Commit

Permalink
SAK-43876 Allow TA reorder gradebook items. (sakaiproject#8325)
Browse files Browse the repository at this point in the history
  • Loading branch information
juanjmerono authored Jul 2, 2020
1 parent f78918f commit bd7ce5f
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ public void updateAssignmentOrder(final EntityReference ref, final Map<String, O
}
checkValidSite(siteId);

// check instructor
checkInstructor(siteId);
// check instructor or TA
checkInstructorOrTA(siteId);

// update the order
this.businessService.updateAssignmentOrder(siteId, assignmentId, order);
Expand Down Expand Up @@ -198,8 +198,8 @@ public void updateCategorizedAssignmentOrder(final EntityReference ref, final Ma
}
checkValidSite(siteId);

// check instructor
checkInstructor(siteId);
// check instructor or TA
checkInstructorOrTA(siteId);

// update the order
try {
Expand Down

0 comments on commit bd7ce5f

Please sign in to comment.