Skip to content

Commit

Permalink
fix: Adds CSRF trusted origin to devstack settings (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
brobro10000 authored Nov 14, 2023
1 parent 88dc456 commit 212c278
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions enterprise_subsidy/settings/devstack.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
'http://localhost:1991', # frontend-app-admin-portal
)

CSRF_TRUSTED_ORIGINS = [
'http://localhost:18450',
'http://localhost:8734',
'http://localhost:1991',
]

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
Expand Down

0 comments on commit 212c278

Please sign in to comment.