Allow Course Team Non-Staff to Generate Grade
By default, only user with staff flag can generate grade on Instructor Data Download tab. When someone was added as Data Researcher, the user can access Data Download tab only and can’t generate grade. To allow course team without staff flag can generate grade, follow the steps below:
-
Go to Open edX server console.
-
Open and edit LMS configuration (
/edx/app/edxapp/lms.env.json
or/edx/etc/lms.yml
). -
Then find the
"FEATURES"
configuration, add ALLOW_COURSE_STAFF_GRADE_DOWNLOADS into"FEATURES"
array and set to true. See the following codes snippet:... FEATURES: ALLOW_COURSE_STAFF_GRADE_DOWNLOADS: true ...
- Restart LMS services.