Merge pull request #13706 from edx/jeskew/move_embargo_out_of_common

Move embargo from common to openedx/core/djangoapps.
This commit is contained in:
John Eskew
2016-11-08 14:38:24 -05:00
committed by GitHub
39 changed files with 77 additions and 58 deletions

View File

@@ -368,7 +368,7 @@ MIDDLEWARE_CLASSES = (
# Allows us to dark-launch particular languages
'openedx.core.djangoapps.dark_lang.middleware.DarkLangMiddleware',
'embargo.middleware.EmbargoMiddleware',
'openedx.core.djangoapps.embargo.middleware.EmbargoMiddleware',
# Detects user-requested locale from 'accept-language' header in http request
'django.middleware.locale.LocaleMiddleware',
@@ -866,7 +866,7 @@ INSTALLED_APPS = (
'django_openid_auth',
# Country embargo support
'embargo',
'openedx.core.djangoapps.embargo',
# Monitoring signals
'openedx.core.djangoapps.monitoring',