Skip to content
Snippets Groups Projects
Unverified Commit 3dd6a463 authored by Michael Roytman's avatar Michael Roytman Committed by GitHub
Browse files

Merge pull request #25287 from edx/mroytman/MST-432-new-proctoring-features-flag

[MST-432] add a CourseWaffleFlag to toggle various proctoring experience improvements
parents ef73c68a b007c723
No related merge requests found
......@@ -85,6 +85,19 @@ COURSEWARE_MICROFRONTEND_PROGRESS_MILESTONES_FIRST_SECTION_CELEBRATION = CourseW
WAFFLE_FLAG_NAMESPACE, 'mfe_progress_milestones_first_section_celebration', __name__
)
# .. toggle_name: courseware.proctoring_improvements
# .. toggle_implementation: CourseWaffleFlag
# .. toggle_default: False
# .. toggle_description: Waffle flag to toggle various enhancements to the proctoring experience, including but
# not limited to the display of learner facing proctoring information on the course outline, changes to the Proctortrack
# onboarding flow, changes to IDV (identity verification) requirements, etc.
# .. toggle_use_cases: beta_testing
# .. toggle_creation_date: 2020-10-07
# .. toggle_tickets: MST-432
COURSEWARE_PROCTORING_IMPROVEMENTS = CourseWaffleFlag(
WAFFLE_FLAG_NAMESPACE, 'proctoring_improvements', __name__
)
def course_exit_page_is_active(course_key):
return (
......
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