Commit d7fd454b by Nimisha Asthagiri

Merge pull request #7316 from edx/video-pipeline/setting-display-fix

Do not show video_upload_pipeline setting if the feature is disabled
parents 4289ecd3 8e5563d4
......@@ -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