From 51ccf48f1cc11af3b80732ec22a9270539f798bf Mon Sep 17 00:00:00 2001 From: sarina Date: Tue, 23 Mar 2021 16:16:21 -0400 Subject: [PATCH] =?UTF-8?q?fix:=20Add=20=E2=80=98ENABLE=5FHELP=5FLINK?= =?UTF-8?q?=E2=80=99=20to=20Studio=20settings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes an issue where the button that linked to edX documentation for course teams in Studio that displayed beside the logged-in user's username/ drop-down menu is gone. Regression from PR #26106 Ref: TNL-8138 --- cms/envs/common.py | 10 ++++++++++ lms/envs/common.py | 1 - 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/cms/envs/common.py b/cms/envs/common.py index f9cce8a341..1b189d536b 100644 --- a/cms/envs/common.py +++ b/cms/envs/common.py @@ -447,6 +447,16 @@ FEATURES = { # .. toggle_tickets: None # .. toggle_warnings: Another toggle DISABLE_LIBRARY_CREATION overrides DISABLE_COURSE_CREATION, if present. 'DISABLE_COURSE_CREATION': False, + + # Can be turned off to disable the help link in the navbar + # .. toggle_name: FEATURES['ENABLE_HELP_LINK'] + # .. toggle_implementation: DjangoSetting + # .. toggle_default: True + # .. toggle_description: When True, a help link is displayed on the main navbar. Set False to hide it. + # .. toggle_use_cases: open_edx + # .. toggle_creation_date: 2021-03-05 + # .. toggle_tickets: https://github.com/edx/edx-platform/pull/26106 + 'ENABLE_HELP_LINK': True, } ENABLE_JASMINE = False diff --git a/lms/envs/common.py b/lms/envs/common.py index 423e2f3a5a..9e345e2506 100644 --- a/lms/envs/common.py +++ b/lms/envs/common.py @@ -279,7 +279,6 @@ FEATURES = { # .. toggle_tickets: https://github.com/edx/edx-platform/pull/26106 'ENABLE_HELP_LINK': True, - # .. toggle_name: FEATURES['HIDE_DASHBOARD_COURSES_UNTIL_ACTIVATED'] # .. toggle_implementation: DjangoSetting # .. toggle_default: False