Rename toggle_expiration_date to toggle_target_removal_date

This is part of the changes brought by code-annotations==0.7.0
This commit is contained in:
Régis Behmo
2020-09-10 18:34:30 +02:00
parent 98a13d6a7e
commit 7d93715880
22 changed files with 73 additions and 73 deletions

View File

@@ -28,7 +28,7 @@ class CourseDurationLimitConfig(StackedConfigurationModel):
.. toggle_category: ?
.. toggle_use_cases: ?
.. toggle_creation_date: 2018-11-02
.. toggle_expiration_date: None
.. toggle_target_removal_date: None
.. toggle_warnings: None
.. toggle_tickets: None
"""

View File

@@ -92,7 +92,7 @@ COURSE_PRE_START_ACCESS_FLAG = WaffleFlag(WAFFLE_FLAG_NAMESPACE, 'pre_start_acce
# .. toggle_description: Used with our integration with CourseTalk to display reviews for a course.
# .. toggle_use_cases: temporary
# .. toggle_creation_date: 2017-06-19
# .. toggle_expiration_date: ???
# .. toggle_target_removal_date: ???
# .. toggle_warnings: We are no longer integrating with CourseTalk, so this probably should be deprecated and the code
# for reviews should be removed.
# .. toggle_tickets: DEPR-48
@@ -105,7 +105,7 @@ SHOW_REVIEWS_TOOL_FLAG = CourseWaffleFlag(WAFFLE_FLAG_NAMESPACE, 'show_reviews_t
# .. toggle_description: Used to determine whether or not to use course goals for the particular course.
# .. toggle_use_cases: opt_out, temporary
# .. toggle_creation_date: 2017-09-11
# .. toggle_expiration_date: ???
# .. toggle_target_removal_date: ???
# .. toggle_warnings: N/A
# .. toggle_tickets: N/A
ENABLE_COURSE_GOALS = CourseWaffleFlag(WAFFLE_FLAG_NAMESPACE, 'enable_course_goals', __name__)
@@ -123,7 +123,7 @@ UPGRADE_DEADLINE_MESSAGE = CourseWaffleFlag(WAFFLE_FLAG_NAMESPACE, 'upgrade_dead
# .. toggle_description: Used to switch between 'welcome message' and 'latest update' on the course home page.
# .. toggle_use_cases: opt_out
# .. toggle_creation_date: 2017-09-11
# .. toggle_expiration_date: ???
# .. toggle_target_removal_date: ???
# .. toggle_warnings: This is meant to be configured using waffle_utils course override only. Either do not create the
# actual waffle flag, or be sure to unset the flag even for Superusers.
# .. toggle_tickets: N/A

View File

@@ -15,7 +15,7 @@ WAFFLE_NAMESPACE = u'course_experience'
# .. toggle_description: Used to determine whether to show custom HTML in the sidebar on the internal course about page.
# .. toggle_use_cases: open_edx
# .. toggle_creation_date: 2018-01-26
# .. toggle_expiration_date: ???
# .. toggle_target_removal_date: ???
# .. toggle_warnings: N/A
# .. toggle_tickets: N/A
ENABLE_COURSE_ABOUT_SIDEBAR_HTML = u'enable_about_sidebar_html'

View File

@@ -17,7 +17,7 @@ WAFFLE_FLAG_NAMESPACE = WaffleFlagNamespace(name='learner_profile')
# .. toggle_description: Supports staged rollout of a new micro-frontend-based implementation of the profile page.
# .. toggle_use_cases: incremental_release, open_edx
# .. toggle_creation_date: 2019-02-19
# .. toggle_expiration_date: 2020-12-31
# .. toggle_target_removal_date: 2020-12-31
# .. toggle_warnings: Also set settings.PROFILE_MICROFRONTEND_URL and site's ENABLE_PROFILE_MICROFRONTEND.
# .. toggle_tickets: DEPR-17
REDIRECT_TO_PROFILE_MICROFRONTEND = WaffleFlag(WAFFLE_FLAG_NAMESPACE, 'redirect_to_microfrontend', __name__)