Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:UAlbertaALTLab/morphodict into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
fbanados committed Aug 23, 2024
2 parents 719761b + 4ae1519 commit 5abb110
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/crkeng/site/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
PRODUCTION_HOST = "itwewina.altlab.app"

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

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

Expand Down
2 changes: 1 addition & 1 deletion src/morphodict/site/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
else: # pragma: no cover
ALLOWED_HOSTS = [HOSTNAME, "localhost"]

CSRF_TRUSTED_ORIGINS = ['https://'+HOSTNAME]
CSRF_TRUSTED_ORIGINS = ["https://" + HOSTNAME]

# Database
# https://docs.djangoproject.com/en/3.2/ref/settings/#databases
Expand Down

0 comments on commit 5abb110

Please sign in to comment.