Merge pull request #51 from danieldupriest/cors-fix

Reordered apps and middleware in settings.py, fixing CORS issue. I think Preston and I were the only ones to experience this issue, so I'm closing the PR. Feel free to test if you have access to Debian.
This commit is contained in:
Daniel Dupriest 2019-02-01 19:12:50 -08:00 committed by GitHub
commit da878aedb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,10 +38,12 @@ INSTALLED_APPS = [
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'backend',
# 3rd party
'rest_framework',
'users',
'corsheaders',
# local
'users',
'backend',
]
REST_FRAMEWORK = {
@ -52,6 +54,7 @@ REST_FRAMEWORK = {
MIDDLEWARE = [
'corsheaders.middleware.CorsMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',