Commit 5e51c5cf by Ned Batchelder Committed by GitHub

Merge pull request #15517 from edx/george/creator-group-default-ginkgo

Don't allow any user to create courses by default
parents 582b3f11 529de88a
...@@ -149,8 +149,8 @@ FEATURES = { ...@@ -149,8 +149,8 @@ FEATURES = {
'AUTOPLAY_VIDEOS': False, 'AUTOPLAY_VIDEOS': False,
# If set to True, new Studio users won't be able to author courses unless # If set to True, new Studio users won't be able to author courses unless
# edX has explicitly added them to the course creator group. # an Open edX admin has added them to the course creator group.
'ENABLE_CREATOR_GROUP': False, 'ENABLE_CREATOR_GROUP': True,
# whether to use password policy enforcement or not # whether to use password policy enforcement or not
'ENFORCE_PASSWORD_POLICY': False, 'ENFORCE_PASSWORD_POLICY': False,
......
...@@ -119,6 +119,9 @@ SEARCH_ENGINE = "search.elastic.ElasticSearchEngine" ...@@ -119,6 +119,9 @@ SEARCH_ENGINE = "search.elastic.ElasticSearchEngine"
########################## Certificates Web/HTML View ####################### ########################## Certificates Web/HTML View #######################
FEATURES['CERTIFICATES_HTML_VIEW'] = True FEATURES['CERTIFICATES_HTML_VIEW'] = True
########################## AUTHOR PERMISSION #######################
FEATURES['ENABLE_CREATOR_GROUP'] = False
################################# DJANGO-REQUIRE ############################### ################################# DJANGO-REQUIRE ###############################
# Whether to run django-require in debug mode. # Whether to run django-require in debug mode.
......
...@@ -323,6 +323,9 @@ SEARCH_ENGINE = "search.tests.mock_search_engine.MockSearchEngine" ...@@ -323,6 +323,9 @@ SEARCH_ENGINE = "search.tests.mock_search_engine.MockSearchEngine"
FEATURES['ENABLE_ENROLLMENT_TRACK_USER_PARTITION'] = True FEATURES['ENABLE_ENROLLMENT_TRACK_USER_PARTITION'] = True
########################## AUTHOR PERMISSION #######################
FEATURES['ENABLE_CREATOR_GROUP'] = False
# teams feature # teams feature
FEATURES['ENABLE_TEAMS'] = True FEATURES['ENABLE_TEAMS'] = True
......
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