From ab0e21455abea3affb376167e0dfd14cab173ffd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Thu, 10 Sep 2020 18:17:15 +0200 Subject: [PATCH] Get rid of the `toggle_category` annotation, now deprecated Since code-annotations==0.7.0, this annotation is not used anymore. --- cms/djangoapps/contentstore/config/waffle.py | 1 - cms/envs/common.py | 8 -------- doc.rst.j2 | 1 - lms/djangoapps/course_api/__init__.py | 2 -- lms/djangoapps/course_api/blocks/toggles.py | 1 - lms/djangoapps/courseware/toggles.py | 2 -- lms/djangoapps/discussion/config/settings.py | 1 - lms/djangoapps/experiments/utils.py | 3 --- lms/djangoapps/verify_student/toggles.py | 2 -- lms/envs/common.py | 15 --------------- .../core/djangoapps/user_api/accounts/toggles.py | 2 -- .../core/djangoapps/user_authn/config/waffle.py | 1 - .../core/djangoapps/user_authn/views/register.py | 1 - .../djangoapps/video_pipeline/config/waffle.py | 2 -- openedx/core/djangoapps/waffle_utils/__init__.py | 1 - openedx/features/course_experience/__init__.py | 3 --- openedx/features/course_experience/waffle.py | 1 - openedx/features/learner_profile/toggles.py | 1 - 18 files changed, 48 deletions(-) diff --git a/cms/djangoapps/contentstore/config/waffle.py b/cms/djangoapps/contentstore/config/waffle.py index bde49c25ec..b378ad9afa 100644 --- a/cms/djangoapps/contentstore/config/waffle.py +++ b/cms/djangoapps/contentstore/config/waffle.py @@ -50,7 +50,6 @@ SHOW_REVIEW_RULES_FLAG = CourseWaffleFlag( # .. toggle_implementation: WaffleFlag # .. toggle_default: False # .. toggle_description: Toggles the new micro-frontend-based implementation of the library authoring experience. -# .. toggle_category: micro-frontend # .. toggle_use_cases: incremental_release, open_edx # .. toggle_creation_date: 2020-08-03 # .. toggle_expiration_date: 2020-12-31 diff --git a/cms/envs/common.py b/cms/envs/common.py index 00f6f588ab..45a2b4d9a9 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -339,7 +339,6 @@ FEATURES = { # .. toggle_default: False # .. toggle_description: Set to True to enable changing a user password through django admin. This is disabled by # default because enabling allows a method to bypass password policy. - # .. toggle_category: admin # .. toggle_use_cases: open_edx # .. toggle_creation_date: 2020-02-21 # .. toggle_expiration_date: None @@ -354,7 +353,6 @@ FEATURES = { # .. toggle_implementation: DjangoSetting # .. toggle_default: False # .. toggle_description: Set to True to enable team-based ORA submissions. - # .. toggle_category: ora # .. toggle_use_cases: incremental_release # .. toggle_creation_date: 2020-03-03 # .. toggle_expiration_date: None @@ -369,7 +367,6 @@ FEATURES = { # .. toggle_description: A "work-around" feature toggle meant to help in cases where some file uploads are not # discoverable. If enabled, will iterate through all possible file key suffixes up to the max for displaying file # metadata in staff assessments. - # .. toggle_category: ora # .. toggle_use_cases: graceful_degradation # .. toggle_creation_date: 2020-03-03 # .. toggle_expiration_date: None @@ -383,7 +380,6 @@ FEATURES = { # .. toggle_default: False # .. toggle_description: A "work-around" feature toggle meant to help in cases where some file uploads are not # discoverable. If enabled, will pull file metadata from StudentModule.state for display in staff assessments. - # .. toggle_category: ora # .. toggle_use_cases: graceful_degradation # .. toggle_creation_date: 2020-03-03 # .. toggle_expiration_date: None @@ -400,7 +396,6 @@ FEATURES = { # To disable, set to False. # To enable with a custom support deadline, set to an ISO-8601 date string: # eg: '2020-09-01' - # .. toggle_category: n/a # .. toggle_use_cases: incremental_release # .. toggle_creation_date: 2020-06-12 # .. toggle_expiration_date: 2020-12-01 @@ -414,7 +409,6 @@ FEATURES = { # .. toggle_implementation: DjangoSetting # .. toggle_default: False # .. toggle_description: Set to True to enable the Library Authoring MFE - # .. toggle_category: micro-frontend # .. toggle_use_cases: incremental_release # .. toggle_creation_date: 2020-06-20 # .. toggle_expiration_date: 2020-12-31 @@ -2273,7 +2267,6 @@ EDXAPP_PARSE_KEYS = {} # .. toggle_implementation: DjangoSetting # .. toggle_default: False # .. toggle_description: Toggle for removing the deprecated /signin url. -# .. toggle_category: n/a # .. toggle_use_cases: incremental_release # .. toggle_creation_date: 2019-12-02 # .. toggle_expiration_date: 2020-06-01 @@ -2286,7 +2279,6 @@ DISABLE_DEPRECATED_SIGNIN_URL = False # .. toggle_implementation: DjangoSetting # .. toggle_default: False # .. toggle_description: Toggle for removing the deprecated /signup url. -# .. toggle_category: n/a # .. toggle_use_cases: incremental_release # .. toggle_creation_date: 2019-12-02 # .. toggle_expiration_date: 2020-06-01 diff --git a/doc.rst.j2 b/doc.rst.j2 index dc787e616a..f5e00e53fe 100644 --- a/doc.rst.j2 +++ b/doc.rst.j2 @@ -19,7 +19,6 @@ These are all of our well-documented feature toggles! {% if group.toggle_expiration_date != 'None' -%} * Expiration date: {{ group.toggle_expiration_date }} {% endif -%} -* Category: {{ group.toggle_category }} {% if group.toggle_tickets != 'None' -%} * Tickets: {{ group.toggle_tickets }} {% endif -%} diff --git a/lms/djangoapps/course_api/__init__.py b/lms/djangoapps/course_api/__init__.py index b5e65d1b72..03514d0c89 100644 --- a/lms/djangoapps/course_api/__init__.py +++ b/lms/djangoapps/course_api/__init__.py @@ -10,7 +10,6 @@ WAFFLE_SWITCH_NAMESPACE = WaffleSwitchNamespace(name='course_list_api_rate_limit # .. toggle_default: False # .. toggle_description: Waffle switch to enable the throttling of 2 requests/minute to the course API. For staff # users, this limit is 10 requests/minute. -# .. toggle_category: course_api # .. toggle_use_cases: open_edx # .. toggle_creation_date: 2018-06-12 # .. toggle_expiration_date: None @@ -23,7 +22,6 @@ USE_RATE_LIMIT_2_FOR_COURSE_LIST_API = WaffleSwitch(WAFFLE_SWITCH_NAMESPACE, 'ra # .. toggle_default: False # .. toggle_description: Waffle switch to enable the throttling of 10 requests/minute to the course API. For staff # users, this limit is 20 requests/minute. -# .. toggle_category: course_api # .. toggle_use_cases: open_edx # .. toggle_creation_date: 2018-06-12 # .. toggle_expiration_date: None diff --git a/lms/djangoapps/course_api/blocks/toggles.py b/lms/djangoapps/course_api/blocks/toggles.py index f3878ddc18..c818228949 100644 --- a/lms/djangoapps/course_api/blocks/toggles.py +++ b/lms/djangoapps/course_api/blocks/toggles.py @@ -12,7 +12,6 @@ COURSE_BLOCKS_API_NAMESPACE = WaffleFlagNamespace(name=u'course_blocks_api') # .. toggle_implementation: WaffleFlag # .. toggle_default: False # .. toggle_description: Waffle flag to hide access denial messages in the course blocks. -# .. toggle_category: course api # .. toggle_use_cases: incremental_release, open_edx # .. toggle_creation_date: ?? # .. toggle_expiration_date: None diff --git a/lms/djangoapps/courseware/toggles.py b/lms/djangoapps/courseware/toggles.py index 8448ae8b9a..e7b3a833c3 100644 --- a/lms/djangoapps/courseware/toggles.py +++ b/lms/djangoapps/courseware/toggles.py @@ -13,7 +13,6 @@ WAFFLE_FLAG_NAMESPACE = WaffleFlagNamespace(name='courseware') # .. toggle_default: False # .. toggle_description: Waffle flag to redirect to another learner profile experience. Supports staged rollout to # students for a new micro-frontend-based implementation of the courseware page. -# .. toggle_category: micro-frontend # .. toggle_use_cases: incremental_release, open_edx # .. toggle_creation_date: 2020-01-29 # .. toggle_expiration_date: 2020-12-31 @@ -31,7 +30,6 @@ REDIRECT_TO_COURSEWARE_MICROFRONTEND = ExperimentWaffleFlag( # .. toggle_description: Waffle flag to display a link for the new learner experience to course teams without # redirecting students. Supports staged rollout to course teams of a new micro-frontend-based implementation of the # courseware page. -# .. toggle_category: micro-frontend # .. toggle_use_cases: incremental_release, open_edx # .. toggle_creation_date: 2020-03-09 # .. toggle_expiration_date: 2020-12-31 diff --git a/lms/djangoapps/discussion/config/settings.py b/lms/djangoapps/discussion/config/settings.py index c25c5234ab..4e29d95a06 100644 --- a/lms/djangoapps/discussion/config/settings.py +++ b/lms/djangoapps/discussion/config/settings.py @@ -9,7 +9,6 @@ from django.conf import settings # .. toggle_description: Settings for forums/discussions to on/off daily digest # feature. Set this to True if you want to enable users to subscribe and unsubscribe # for daily digest. This setting enables deprecation of daily digest. -# .. toggle_category: discussion # .. toggle_use_cases: open_edx # .. toggle_creation_date: 2020-03-09 # .. toggle_expiration_date: None diff --git a/lms/djangoapps/experiments/utils.py b/lms/djangoapps/experiments/utils.py index 57c8aa19c8..b64213dcb8 100644 --- a/lms/djangoapps/experiments/utils.py +++ b/lms/djangoapps/experiments/utils.py @@ -38,7 +38,6 @@ experiments_namespace = WaffleFlagNamespace(name=u'experiments') # .. toggle_implementation: WaffleFlag # .. toggle_default: False # .. toggle_description: Toggle for adding the current course's program information to user metadata -# .. toggle_category: experiments # .. toggle_use_cases: monitored_rollout # .. toggle_creation_date: 2019-2-25 # .. toggle_expiration_date: None @@ -55,7 +54,6 @@ PROGRAM_INFO_FLAG = WaffleFlag( # .. toggle_implementation: WaffleFlag # .. toggle_default: False # .. toggle_description: Toggle for adding info about each course to the dashboard metadata -# .. toggle_category: experiments # .. toggle_use_cases: monitored_rollout # .. toggle_creation_date: 2019-3-28 # .. toggle_expiration_date: None @@ -70,7 +68,6 @@ DASHBOARD_INFO_FLAG = WaffleFlag(experiments_namespace, u'add_dashboard_info', _ # .. toggle_implementation: WaffleFlag # .. toggle_default: False # .. toggle_description: Make sure upsell tracking JS works as expected. -# .. toggle_category: experiments # .. toggle_use_cases: monitored_rollout # .. toggle_creation_date: 2020-7-7 # .. toggle_expiration_date: None diff --git a/lms/djangoapps/verify_student/toggles.py b/lms/djangoapps/verify_student/toggles.py index b595d244a6..4342a289fb 100644 --- a/lms/djangoapps/verify_student/toggles.py +++ b/lms/djangoapps/verify_student/toggles.py @@ -13,7 +13,6 @@ WAFFLE_FLAG_NAMESPACE = WaffleFlagNamespace(name='verify_student') # .. toggle_default: False # .. toggle_description: Supports staged rollout to students for a new email templates # implementation for ID verification. -# .. toggle_category: verify student # .. toggle_use_cases: incremental_release, open_edx # .. toggle_creation_date: 2020-06-25 # .. toggle_expiration_date: n/a @@ -36,7 +35,6 @@ def use_new_templates_for_id_verification_emails(): # .. toggle_implementation: WaffleFlag # .. toggle_default: False # .. toggle_description: Supports staged rollout to students for the new IDV flow. -# .. toggle_category: verify student # .. toggle_use_cases: incremental_release, open_edx # .. toggle_creation_date: 2020-07-09 # .. toggle_expiration_date: n/a diff --git a/lms/envs/common.py b/lms/envs/common.py index 1f28b0afd3..171cbeface 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -139,7 +139,6 @@ FEATURES = { # .. toggle_description: Set this to True if you want the discussion digest emails # enabled automatically for new users. This will be set on all new account # registrations. - # .. toggle_category: admin # .. toggle_use_cases: open_edx # .. toggle_creation_date: 2014-08-19 # .. toggle_expiration_date: None @@ -187,7 +186,6 @@ FEATURES = { # .. toggle_default: False # .. toggle_description: enables dashboard at /syadmin/ for django staff, for seeing overview of system status, for # deleting and loading courses, for seeing log of git imports of courseware. - # .. toggle_category: admin # .. toggle_use_cases: open_edx # .. toggle_creation_date: 2013-12-12 # .. toggle_expiration_date: None @@ -203,7 +201,6 @@ FEATURES = { # .. toggle_default: False # .. toggle_description: Enable this feature to allow this Open edX platform to be an OAuth2 authentication # provider. This is necessary to enable some other features, such as the REST API for the mobile application. - # .. toggle_category: admin # .. toggle_use_cases: monitored_rollout # .. toggle_creation_date: 2014-09-09 # .. toggle_expiration_date: None @@ -275,7 +272,6 @@ FEATURES = { # .. toggle_default: False # .. toggle_description: Set to True to disable honor certificates. Typically used when your installation only # allows verified certificates, like courses.edx.org. - # .. toggle_category: certificates # .. toggle_use_cases: open_edx # .. toggle_creation_date: 2019-05-14 # .. toggle_expiration_date: None @@ -296,7 +292,6 @@ FEATURES = { # mechanism where superusers can simply modify attributes of other users by accessing the "/auto_auth url" with # the right # querystring parameters. - # .. toggle_category: admin # .. toggle_use_cases: open_edx # .. toggle_creation_date: 2018-05-07 # .. toggle_expiration_date: None @@ -450,7 +445,6 @@ FEATURES = { # .. toggle_default: False # .. toggle_description: Display the standard footer in the login page. This feature can be overridden by a site- # specific configuration. - # .. toggle_category: admin # .. toggle_use_cases: open_edx # .. toggle_creation_date: 2016-06-24 # .. toggle_expiration_date: None @@ -600,7 +594,6 @@ FEATURES = { # .. toggle_default: True # .. toggle_description: Allow public account creation. If this is disabled, users will no longer have access to # the signup page. - # .. toggle_category: admin # .. toggle_use_cases: open_edx # .. toggle_creation_date: 2017-04-12 # .. toggle_expiration_date: None @@ -642,7 +635,6 @@ FEATURES = { # user asks for a password reset but they don't have an account associated to their email. This is useful for # notifying users that they don't have an account associated with email addresses they believe they've registered # with. This setting can be overridden by a site-specific configuration. - # .. toggle_category: admin # .. toggle_use_cases: open_edx # .. toggle_creation_date: 2017-07-20 # .. toggle_expiration_date: None @@ -666,7 +658,6 @@ FEATURES = { # .. toggle_default: False # .. toggle_description: Set to True to enable changing a user password through django admin. This is disabled by # default because enabling allows a method to bypass password policy. - # .. toggle_category: admin # .. toggle_use_cases: open_edx # .. toggle_creation_date: 2020-02-21 # .. toggle_expiration_date: None @@ -680,7 +671,6 @@ FEATURES = { # .. toggle_default: False # .. toggle_description: Set to True to enable the Courseware MFE at the platform level for global staff (see # REDIRECT_TO_COURSEWARE_MICROFRONTEND for course rollout) - # .. toggle_category: admin # .. toggle_use_cases: open_edx # .. toggle_creation_date: 2020-03-05 # .. toggle_expiration_date: None @@ -694,7 +684,6 @@ FEATURES = { # .. toggle_implementation: DjangoSetting # .. toggle_default: False # .. toggle_description: Supports staged rollout of a new micro-frontend-based implementation of the logistration. - # .. toggle_category: micro-frontend # .. toggle_use_cases: incremental_release, open_edx # .. toggle_creation_date: 2020-09-08 # .. toggle_expiration_date: None @@ -709,7 +698,6 @@ FEATURES = { # .. toggle_implementation: DjangoSetting # .. toggle_default: False # .. toggle_description: Set to True to enable team-based ORA submissions. - # .. toggle_category: ora # .. toggle_use_cases: incremental_release # .. toggle_creation_date: 2020-03-03 # .. toggle_expiration_date: None @@ -724,7 +712,6 @@ FEATURES = { # .. toggle_description: A "work-around" feature toggle meant to help in cases where some file uploads are not # discoverable. If enabled, will iterate through all possible file key suffixes up to the max for displaying # file metadata in staff assessments. - # .. toggle_category: ora # .. toggle_use_cases: graceful_degradation # .. toggle_creation_date: 2020-03-03 # .. toggle_expiration_date: None @@ -738,7 +725,6 @@ FEATURES = { # .. toggle_default: False # .. toggle_description: A "work-around" feature toggle meant to help in cases where some file uploads are not # discoverable. If enabled, will pull file metadata from StudentModule.state for display in staff assessments. - # .. toggle_category: ora # .. toggle_use_cases: graceful_degradation # .. toggle_creation_date: 2020-03-03 # .. toggle_expiration_date: None @@ -752,7 +738,6 @@ FEATURES = { # .. toggle_default: False # .. toggle_description: Set to True to add deanonymized usernames to ORA data # report. - # .. toggle_category: ora # .. toggle_use_cases: incremental_release # .. toggle_creation_date: 2020-06-11 # .. toggle_expiration_date: None diff --git a/openedx/core/djangoapps/user_api/accounts/toggles.py b/openedx/core/djangoapps/user_api/accounts/toggles.py index e9bedb5ffd..7e96214822 100644 --- a/openedx/core/djangoapps/user_api/accounts/toggles.py +++ b/openedx/core/djangoapps/user_api/accounts/toggles.py @@ -11,7 +11,6 @@ from openedx.core.djangoapps.waffle_utils import WaffleFlag # .. toggle_implementation: WaffleFlag # .. toggle_default: False # .. toggle_description: Supports staged rollout of a new micro-frontend-based implementation of the order history page. -# .. toggle_category: micro-frontend # .. toggle_use_cases: incremental_release, open_edx # .. toggle_creation_date: 2019-04-11 # .. toggle_expiration_date: 2020-12-31 @@ -33,7 +32,6 @@ def should_redirect_to_order_history_microfrontend(): # .. toggle_implementation: WaffleFlag # .. toggle_default: False # .. toggle_description: Supports staged rollout of a new micro-frontend-based implementation of the account page. -# .. toggle_category: micro-frontend # .. toggle_use_cases: incremental_release, open_edx # .. toggle_creation_date: 2019-04-30 # .. toggle_expiration_date: 2020-12-31 diff --git a/openedx/core/djangoapps/user_authn/config/waffle.py b/openedx/core/djangoapps/user_authn/config/waffle.py index 5b8f3dda11..536e985aa7 100644 --- a/openedx/core/djangoapps/user_authn/config/waffle.py +++ b/openedx/core/djangoapps/user_authn/config/waffle.py @@ -13,7 +13,6 @@ _WAFFLE_SWITCH_NAMESPACE = WaffleSwitchNamespace(name=_WAFFLE_NAMESPACE, log_pre # .. toggle_default: False # .. toggle_description: When enabled, users must be sign in using their allowed domain SSO account. This includes sign- # ins to the Django admin dashboard at "/admin". -# .. toggle_category: authn # .. toggle_use_cases: incremental_release # .. toggle_creation_date: 2019-11-20 # .. toggle_expiration_date: 2020-01-31 diff --git a/openedx/core/djangoapps/user_authn/views/register.py b/openedx/core/djangoapps/user_authn/views/register.py index 6cd6eb2db4..c75b00ea9a 100644 --- a/openedx/core/djangoapps/user_authn/views/register.py +++ b/openedx/core/djangoapps/user_authn/views/register.py @@ -100,7 +100,6 @@ REGISTER_USER = Signal(providing_args=["user", "registration"]) # .. toggle_type: flag # .. toggle_default: False # .. toggle_description: Enable verbose logging of registration failure messages -# .. toggle_category: registration # .. toggle_use_cases: monitored_rollout # .. toggle_creation_date: 2020-04-30 # .. toggle_expiration_date: 2020-06-01 diff --git a/openedx/core/djangoapps/video_pipeline/config/waffle.py b/openedx/core/djangoapps/video_pipeline/config/waffle.py index 141d2f693f..f50a700c2a 100644 --- a/openedx/core/djangoapps/video_pipeline/config/waffle.py +++ b/openedx/core/djangoapps/video_pipeline/config/waffle.py @@ -13,7 +13,6 @@ WAFFLE_NAMESPACE = 'videos' # .. toggle_default: False # .. toggle_description: Waffle flag telling whether youtube is deprecated. When # enabled, videos are no longer uploaded to YouTube as part of the video pipeline. -# .. toggle_category: videos # .. toggle_use_cases: open_edx # .. toggle_creation_date: 2018-08-03 # .. toggle_expiration_date: None @@ -27,7 +26,6 @@ DEPRECATE_YOUTUBE = 'deprecate_youtube' # .. toggle_description: When enabled, use Multi-Factor Authentication (MFA) for # authenticating to AWS. These short-lived access tokens are well suited for # development (probably?). -# .. toggle_category: videos # .. toggle_use_cases: open_edx # .. toggle_creation_date: 2020-03-12 # .. toggle_expiration_date: None diff --git a/openedx/core/djangoapps/waffle_utils/__init__.py b/openedx/core/djangoapps/waffle_utils/__init__.py index 216464fa32..f2ad83ec9b 100644 --- a/openedx/core/djangoapps/waffle_utils/__init__.py +++ b/openedx/core/djangoapps/waffle_utils/__init__.py @@ -383,7 +383,6 @@ def _get_waffle_flag_custom_metrics_set(): # .. toggle_default: False # .. toggle_description: A list of waffle flag to track with custom metrics having # values of (True, False, or Both). - # .. toggle_category: monitoring # .. toggle_use_cases: opt_in # .. toggle_creation_date: 2020-06-17 # .. toggle_expiration_date: None diff --git a/openedx/features/course_experience/__init__.py b/openedx/features/course_experience/__init__.py index f31da7c3ec..fcf6b36112 100644 --- a/openedx/features/course_experience/__init__.py +++ b/openedx/features/course_experience/__init__.py @@ -90,7 +90,6 @@ COURSE_PRE_START_ACCESS_FLAG = WaffleFlag(WAFFLE_FLAG_NAMESPACE, 'pre_start_acce # .. toggle_implementation: CourseWaffleFlag # .. toggle_default: False # .. toggle_description: Used with our integration with CourseTalk to display reviews for a course. -# .. toggle_category: course_experience # .. toggle_use_cases: monitored_rollout # .. toggle_creation_date: 2017-06-19 # .. toggle_expiration_date: ??? @@ -105,7 +104,6 @@ SHOW_REVIEWS_TOOL_FLAG = CourseWaffleFlag(WAFFLE_FLAG_NAMESPACE, 'show_reviews_t # .. toggle_implementation: CourseWaffleFlag # .. toggle_default: False # .. toggle_description: Used to determine whether or not to use course goals for the particular course. -# .. toggle_category: course_experience # .. toggle_use_cases: opt_out, monitored_rollout # .. toggle_creation_date: 2017-09-11 # .. toggle_expiration_date: ??? @@ -125,7 +123,6 @@ UPGRADE_DEADLINE_MESSAGE = CourseWaffleFlag(WAFFLE_FLAG_NAMESPACE, 'upgrade_dead # .. toggle_implementation: CourseWaffleFlag # .. toggle_default: False # .. toggle_description: Used to switch between 'welcome message' and 'latest update' on the course home page. -# .. toggle_category: course_experience # .. toggle_use_cases: opt_out # .. toggle_creation_date: 2017-09-11 # .. toggle_expiration_date: ??? diff --git a/openedx/features/course_experience/waffle.py b/openedx/features/course_experience/waffle.py index e8258fc887..45decea082 100644 --- a/openedx/features/course_experience/waffle.py +++ b/openedx/features/course_experience/waffle.py @@ -13,7 +13,6 @@ WAFFLE_NAMESPACE = u'course_experience' # .. toggle_implementation: CourseWaffleFlag # .. toggle_default: False # .. toggle_description: Used to determine whether to show custom HTML in the sidebar on the internal course about page. -# .. toggle_category: course-experience # .. toggle_use_cases: open_edx # .. toggle_creation_date: 2018-01-26 # .. toggle_expiration_date: ??? diff --git a/openedx/features/learner_profile/toggles.py b/openedx/features/learner_profile/toggles.py index 9f9a5509af..5156103948 100644 --- a/openedx/features/learner_profile/toggles.py +++ b/openedx/features/learner_profile/toggles.py @@ -15,7 +15,6 @@ WAFFLE_FLAG_NAMESPACE = WaffleFlagNamespace(name='learner_profile') # .. toggle_implementation: WaffleFlag # .. toggle_default: False # .. toggle_description: Supports staged rollout of a new micro-frontend-based implementation of the profile page. -# .. toggle_category: micro-frontend # .. toggle_use_cases: incremental_release, open_edx # .. toggle_creation_date: 2019-02-19 # .. toggle_expiration_date: 2020-12-31