From 256511e19685e612969fbe6b0f61f5f24c14bbf1 Mon Sep 17 00:00:00 2001 From: Andrii Date: Wed, 18 Jun 2025 16:42:50 +0300 Subject: [PATCH] refactor: set toggle_target_removal_date --- lms/djangoapps/branding/toggles.py | 2 +- lms/envs/common.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lms/djangoapps/branding/toggles.py b/lms/djangoapps/branding/toggles.py index d183b852ae..d5a12f013e 100644 --- a/lms/djangoapps/branding/toggles.py +++ b/lms/djangoapps/branding/toggles.py @@ -24,7 +24,7 @@ def catalog_mfe_enabled(): # .. toggle_default: False # .. toggle_description: Set to True to enable the new catalog page. # .. toggle_creation_date: 2025-05-15 -# .. toggle_target_removal_date: None +# .. toggle_target_removal_date: 2025-11-01 # .. toggle_use_cases: open_edx ENABLE_NEW_CATALOG_PAGE = WaffleFlag(f'{WAFFLE_FLAG_NAMESPACE}.use_new_catalog_page', __name__) diff --git a/lms/envs/common.py b/lms/envs/common.py index e6c147fbae..9dd85470f7 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -887,7 +887,7 @@ FEATURES = { # .. toggle_description: Supports staged rollout of a new micro-frontend-based implementation of the catalog. # .. toggle_use_cases: temporary, open_edx # .. toggle_creation_date: 2025-05-15 - # .. toggle_target_removal_date: None + # .. toggle_target_removal_date: 2025-11-01 'ENABLE_CATALOG_MICROFRONTEND': os.environ.get("EDXAPP_ENABLE_CATALOG_MFE", False), ### ORA Feature Flags ###