From c658a4719b017ad13231267dbb1e9cd2b10c4f3c Mon Sep 17 00:00:00 2001 From: JayRam Nai Date: Sat, 6 Feb 2021 21:18:10 +0530 Subject: [PATCH] docs: Adds annotations for HIDE_DASHBOARD_COURSES_UNTIL_ACTIVATED feature flag (#26403) --- lms/envs/common.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/lms/envs/common.py b/lms/envs/common.py index ac7c0803e3..7a24a11aff 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -248,8 +248,14 @@ FEATURES = { # .. toggle_tickets: https://github.com/edx/edx-platform/pull/1073 'COURSES_ARE_BROWSABLE': True, - # Set to hide the courses list on the Learner Dashboard if they are not enrolled in - # any courses yet. + # .. toggle_name: FEATURES['HIDE_DASHBOARD_COURSES_UNTIL_ACTIVATED'] + # .. toggle_implementation: DjangoSetting + # .. toggle_default: False + # .. toggle_description: When set, it hides the Courses list on the Learner Dashboard page if the learner has not + # yet activated the account and not enrolled in any courses. + # .. toggle_use_cases: open_edx + # .. toggle_creation_date: 2018-05-18 + # .. toggle_tickets: https://openedx.atlassian.net/browse/OSPR-1814 'HIDE_DASHBOARD_COURSES_UNTIL_ACTIVATED': False, # .. toggle_name: FEATURES['ENABLE_STUDENT_HISTORY_VIEW']