Skip to content

Commit 137db61

Browse files
authored
fix(entirety): remove extra space in CSRF_TRUSTED_ORIGINS settings (#246)
1 parent cc31675 commit 137db61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Entirety/entirety/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ def secret_key_not_empty(cls, v) -> str:
318318
IOTA_URL: AnyUrl = Field(default="http://localhost:4041", alias="IOTA_URL")
319319

320320
# CSRF
321-
CSRF_TRUSTED_ORIGINS: list = Field(default=[], alias="CSRF_TRUSTED_ORIGINS ")
321+
CSRF_TRUSTED_ORIGINS: list = Field(default=[], alias="CSRF_TRUSTED_ORIGINS")
322322

323323
# Database
324324
# https://docs.djangoproject.com/en/4.0/ref/settings/#databases

0 commit comments

Comments
 (0)