Commit 8e5563d4 by Nimisha Asthagiri

Do not show video_upload_pipeline advanced setting if the feature is disabled.

parent f0322b96
......@@ -60,6 +60,10 @@ class CourseMetadata(object):
if not settings.FEATURES.get('ENABLE_EDXNOTES'):
filtered_list.append('edxnotes')
# Do not show video_upload_pipeline if the feature is disabled.
if not settings.FEATURES.get('ENABLE_VIDEO_UPLOAD_PIPELINE'):
filtered_list.append('video_upload_pipeline')
return filtered_list
@classmethod
......
......@@ -196,5 +196,4 @@ class AdvancedSettingsPage(CoursePage):
'static_asset_path',
'text_customization',
'annotation_storage_url',
'video_upload_pipeline'
]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment