The ORA Staff Grading App is a microfrontend (MFE) staff grading experience for Open Response Assessments (ORAs). This experience was designed to streamline the grading process and enable richer previews of submission content.
When enabled, ORAs with a staff grading step will link to this new MFE when clicking "Grade Available Responses" from the ORA or link in the instructor dashboard.
To start the MFE and enable the feature in LMS:
-
Start the MFE with
npm run start
. Take a note of the path/port (defaults tohttp://localhost:1993
). -
Add the route root to
edx-platform
settings: Inedx-platform/lms/envs/private.py
or similar, addORA_GRADING_MICROFRONTEND_URL = 'http://localhost:1993'
-
Enable the feature: In Django Admin go to django-waffle > Flags and add/enable a new flag called
openresponseassessment.enhanced_staff_grader
.
From there, visit the new experience by going to the Instructor Dashboard > Open Responses or an ORA with a Staff Graded Step and click a link to begin grading.
See the ORA Staff Grading section on ReadTheDocs for usage information.