Disable Create Course for Non-Staff User on Open edX
To disable create course for non-staff user, follow the steps below:
-
Go to Open edX server console.
-
Open and edit CMS configuration (
/edx/app/edxapp/cms.env.json
or/edx/etc/studio.yml
). -
Then find the
"FEATURES"
configuration, add DISABLE_COURSE_CREATION into"FEATURES"
array and set to true. See the following codes snippet:... FEATURES: DISABLE_COURSE_CREATION: true ...
-
Restart LMS services.