Adds a course option to auto-advance videos.

If enabled for a course, as soon as the video ends, the next unit or subsection
will be loaded, and if it contains a single video, that video will be played.

Course authors can enable the setting for a course, but learners can toggle the
setting on or off once it's enabled on the course.
This commit is contained in:
Daniel Clemente
2017-07-06 22:54:24 -06:00
committed by Jillian Vogel
parent 98fd05b4ee
commit ecf01d1b52
22 changed files with 556 additions and 14 deletions

View File

@@ -170,6 +170,10 @@ FEATURES = {
# Don't autoplay videos for course authors
'AUTOPLAY_VIDEOS': False,
# Move the course author to next page when a video finishes. Set to True to
# show an auto-advance button in videos. If False, videos never auto-advance.
'ENABLE_AUTOADVANCE_VIDEOS': False,
# If set to True, new Studio users won't be able to author courses unless
# an Open edX admin has added them to the course creator group.
'ENABLE_CREATOR_GROUP': True,