Commit e845dda8 by Andy Armstrong

Enable teams and deprecate the advanced setting

parent dbe74ea3
...@@ -168,7 +168,7 @@ FEATURES = { ...@@ -168,7 +168,7 @@ FEATURES = {
}, },
# Teams feature # Teams feature
'ENABLE_TEAMS': False, 'ENABLE_TEAMS': True,
# Show video bumper in Studio # Show video bumper in Studio
'ENABLE_VIDEO_BUMPER': False, 'ENABLE_VIDEO_BUMPER': False,
......
...@@ -904,7 +904,8 @@ class CourseFields(object): ...@@ -904,7 +904,8 @@ class CourseFields(object):
"Enter configuration for the teams feature. Expects two entries: max_team_size and topics, where " "Enter configuration for the teams feature. Expects two entries: max_team_size and topics, where "
"topics is a list of topics." "topics is a list of topics."
), ),
scope=Scope.settings scope=Scope.settings,
deprecated=True, # Deprecated until the teams feature is made generally available
) )
enable_proctored_exams = Boolean( enable_proctored_exams = Boolean(
......
...@@ -199,7 +199,6 @@ class AdvancedSettingsPage(CoursePage): ...@@ -199,7 +199,6 @@ class AdvancedSettingsPage(CoursePage):
'text_customization', 'text_customization',
'annotation_storage_url', 'annotation_storage_url',
'social_sharing_url', 'social_sharing_url',
'teams_configuration',
'video_bumper', 'video_bumper',
'cert_html_view_enabled', 'cert_html_view_enabled',
'enable_proctored_exams', 'enable_proctored_exams',
......
...@@ -396,7 +396,7 @@ FEATURES = { ...@@ -396,7 +396,7 @@ FEATURES = {
'ENABLE_SOFTWARE_SECURE_FAKE': False, 'ENABLE_SOFTWARE_SECURE_FAKE': False,
# Teams feature # Teams feature
'ENABLE_TEAMS': False, 'ENABLE_TEAMS': True,
# Show video bumper in LMS # Show video bumper in LMS
'ENABLE_VIDEO_BUMPER': False, 'ENABLE_VIDEO_BUMPER': 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