Commit d91f9f94 by Christina Roberts Committed by GitHub

Merge pull request #15788 from edx/christina/disable-archived-courses

Disable ENABLE_SEPARATE_ARCHIVED_COURSES due to server error.
parents 4e183b41 b22f35b7
...@@ -101,6 +101,10 @@ FEATURES['ENABLE_VIDEO_BUMPER'] = True # Enable video bumper in Studio settings ...@@ -101,6 +101,10 @@ FEATURES['ENABLE_VIDEO_BUMPER'] = True # Enable video bumper in Studio settings
FEATURES['ENABLE_ENROLLMENT_TRACK_USER_PARTITION'] = True FEATURES['ENABLE_ENROLLMENT_TRACK_USER_PARTITION'] = True
# Whether archived courses (courses with end dates in the past) should be
# shown in Studio in a separate list.
FEATURES['ENABLE_SEPARATE_ARCHIVED_COURSES'] = True
# Enable support for OpenBadges accomplishments # Enable support for OpenBadges accomplishments
FEATURES['ENABLE_OPENBADGES'] = True FEATURES['ENABLE_OPENBADGES'] = True
......
...@@ -254,8 +254,9 @@ FEATURES = { ...@@ -254,8 +254,9 @@ FEATURES = {
'ENABLE_ENROLLMENT_TRACK_USER_PARTITION': True, 'ENABLE_ENROLLMENT_TRACK_USER_PARTITION': True,
# Whether archived courses (courses with end dates in the past) should be # Whether archived courses (courses with end dates in the past) should be
# shown in Studio in a separate list. # shown in Studio in a separate list. Note that attempting to enable this
'ENABLE_SEPARATE_ARCHIVED_COURSES': True # failed on stage-- see EDUCATOR-1134.
'ENABLE_SEPARATE_ARCHIVED_COURSES': False
} }
ENABLE_JASMINE = False ENABLE_JASMINE = False
......
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