Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion enterprise_catalog/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,6 @@

CSRF_COOKIE_SECURE = False
CSRF_TRUSTED_ORIGINS = []
CSRF_TRUSTED_ORIGINS_WITH_SCHEME = [] # just for Django 4.2 upgrade

# AUTHENTICATION CONFIGURATION
LOGIN_URL = '/login/'
Expand Down
3 changes: 0 additions & 3 deletions enterprise_catalog/settings/production.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,3 @@

for override, value in DB_OVERRIDES.items():
DATABASES['default'][override] = value

if django.VERSION[0] >= 4: # for greater than django 3.2 use schemes.
CSRF_TRUSTED_ORIGINS = CSRF_TRUSTED_ORIGINS_WITH_SCHEME