Skip to content

Commit

Permalink
Updated CSRF config for ALL dictionaries as otherwise configs fail to…
Browse files Browse the repository at this point in the history
… change
  • Loading branch information
fbanados committed Aug 23, 2024
1 parent 5abb110 commit b90ad86
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/arpeng/site/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
PRODUCTION_HOST = "nihiitono.altlab.dev"

ALLOWED_HOSTS.append(PRODUCTION_HOST)
CSRF_TRUSTED_ORIGINS.append("https://" + PRODUCTION_HOST)

DEFAULT_RUNSERVER_PORT = 8007

Expand Down
1 change: 1 addition & 0 deletions src/blaeng/site/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
PRODUCTION_HOST = "ipowahsin.altlab.dev"

ALLOWED_HOSTS.append(PRODUCTION_HOST)
CSRF_TRUSTED_ORIGINS.append("https://" + PRODUCTION_HOST)

DEFAULT_RUNSERVER_PORT = 8011

Expand Down
1 change: 1 addition & 0 deletions src/crkLacombeeng/site/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
PRODUCTION_HOST = "lacombe.altlab.dev"

ALLOWED_HOSTS.append(PRODUCTION_HOST)
CSRF_TRUSTED_ORIGINS.append("https://" + PRODUCTION_HOST)

DEFAULT_RUNSERVER_PORT = 8016

Expand Down
1 change: 1 addition & 0 deletions src/cwdeng/site/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
DEFAULT_RUNSERVER_PORT = 8005

ALLOWED_HOSTS.append(PRODUCTION_HOST)
CSRF_TRUSTED_ORIGINS.append("https://" + PRODUCTION_HOST)

FST_TOOL_SAMPLES = [
"kika-nîminaw",
Expand Down
1 change: 1 addition & 0 deletions src/hdneng/site/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
PRODUCTION_HOST = "guusaaw.altlab.dev"

ALLOWED_HOSTS.append(PRODUCTION_HOST)
CSRF_TRUSTED_ORIGINS.append("https://" + PRODUCTION_HOST)

DEFAULT_RUNSERVER_PORT = 8010

Expand Down
1 change: 1 addition & 0 deletions src/srseng/site/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
DEFAULT_RUNSERVER_PORT = 8009

ALLOWED_HOSTS.append(PRODUCTION_HOST)
CSRF_TRUSTED_ORIGINS.append("https://" + PRODUCTION_HOST)

INSTALLED_APPS.insert(0, "srseng.app")

Expand Down

0 comments on commit b90ad86

Please sign in to comment.