Merge pull request #11959 from edx/peter-fogg/request-api-access

Admin access for API requests.
This commit is contained in:
Peter Fogg
2016-03-28 12:44:56 -04:00
11 changed files with 231 additions and 0 deletions

View File

@@ -320,3 +320,7 @@ SECRET_KEY = '85920908f28904ed733fe576320db18cabd7b6cd'
######### custom courses #########
INSTALLED_APPS += ('openedx.core.djangoapps.ccxcon',)
FEATURES['CUSTOM_COURSES_EDX'] = True
# API access management. Necessary so that django-simple-history
# doesn't break when running pre-test migrations.
INSTALLED_APPS += ('openedx.core.djangoapps.api_admin',)