Commit 0577b9d8 by Oleg Marshev Committed by cahrens

Allow turning off Video CDN in Studio.

BLD-1207
parent 26b08a02
......@@ -5,6 +5,8 @@ These are notable changes in edx-platform. This is a rolling list of changes,
in roughly chronological order, most recent first. Add your entries at or near
the top. Include a label indicating the component affected.
Blades: Course teams can turn off Chinese Caching from Studio. BLD-1207
LMS: Instructors can request and see content of previous bulk emails sent in the instructor dashboard.
Studio: New course outline and unit/container pages with revised publishing model. STUD-1790 (part 1)
......
......@@ -27,7 +27,6 @@ class CourseMetadata(object):
'user_partitions',
'name', # from xblock
'tags', # from xblock
'video_speed_optimizations',
'visible_to_staff_only'
]
......
......@@ -148,7 +148,8 @@ class InheritanceMixin(XBlockMixin):
scope=Scope.settings
)
video_speed_optimizations = Boolean(
help="Enable Video CDN.",
display_name=_("Enable video caching system"),
help=_("Enter true or false. If true, video caching will be used for HTML5 videos."),
default=True,
scope=Scope.settings
)
......
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