Enable teams and deprecate the advanced setting

This commit is contained in:
Andy Armstrong
2015-08-06 11:56:17 -04:00
parent dbe74ea340
commit e845dda8b0
4 changed files with 4 additions and 4 deletions

View File

@@ -168,7 +168,7 @@ FEATURES = {
},
# Teams feature
'ENABLE_TEAMS': False,
'ENABLE_TEAMS': True,
# Show video bumper in Studio
'ENABLE_VIDEO_BUMPER': False,

View File

@@ -904,7 +904,8 @@ class CourseFields(object):
"Enter configuration for the teams feature. Expects two entries: max_team_size and topics, where "
"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(

View File

@@ -199,7 +199,6 @@ class AdvancedSettingsPage(CoursePage):
'text_customization',
'annotation_storage_url',
'social_sharing_url',
'teams_configuration',
'video_bumper',
'cert_html_view_enabled',
'enable_proctored_exams',

View File

@@ -396,7 +396,7 @@ FEATURES = {
'ENABLE_SOFTWARE_SECURE_FAKE': False,
# Teams feature
'ENABLE_TEAMS': False,
'ENABLE_TEAMS': True,
# Show video bumper in LMS
'ENABLE_VIDEO_BUMPER': False,