diff --git a/lms/djangoapps/course_home_api/toggles.py b/lms/djangoapps/course_home_api/toggles.py index 4cd1afe9c7..759f8bc484 100644 --- a/lms/djangoapps/course_home_api/toggles.py +++ b/lms/djangoapps/course_home_api/toggles.py @@ -6,7 +6,17 @@ from openedx.core.djangoapps.waffle_utils import CourseWaffleFlag WAFFLE_FLAG_NAMESPACE = 'course_home' -COURSE_HOME_MICROFRONTEND_PROGRESS_TAB = CourseWaffleFlag( # lint-amnesty, pylint: disable=toggle-missing-annotation +# .. toggle_name: course_home.course_home_mfe_progress_tab +# .. toggle_implementation: WaffleFlag +# .. toggle_default: False +# .. toggle_description: This toggle controls the user interface behavior of the progress tab in +# the Learning Management System. When set to True, the progress tab utilizes the newly introduced +# Learning MFE graphs. When set to False (default), it utilizes existing grade graph from edx-platform. +# .. toggle_use_cases: temporary +# .. toggle_creation_date: 2021-03-12 +# .. toggle_target_removal_date: 2024-01-01 +# .. toggle_tickets: https://github.com/openedx/edx-platform/pull/26978 +COURSE_HOME_MICROFRONTEND_PROGRESS_TAB = CourseWaffleFlag( f'{WAFFLE_FLAG_NAMESPACE}.course_home_mfe_progress_tab', __name__ )