Skip to content

Commit

Permalink
fix: 明示的に全オリジンからのリクエストを許可する
Browse files Browse the repository at this point in the history
  • Loading branch information
sushichan044 committed Jan 16, 2025
1 parent eb47816 commit b6946b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/birdxplorer_common/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class CORSSettings(BaseSettings):
allow_methods: list[str] = ["GET"]
allow_headers: list[str] = ["*"]

allow_origins: list[str] = []
allow_origins: list[str] = ["*"]


class GlobalSettings(BaseSettings):
Expand Down

0 comments on commit b6946b8

Please sign in to comment.