Skip to content

Commit 222de8c

Browse files
authored
Merge pull request #140 from codeforjapan/fix/cors-origin
fix: 明示的に全オリジンからのリクエストを許可する
2 parents eb47816 + b6946b8 commit 222de8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/birdxplorer_common/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class CORSSettings(BaseSettings):
3232
allow_methods: list[str] = ["GET"]
3333
allow_headers: list[str] = ["*"]
3434

35-
allow_origins: list[str] = []
35+
allow_origins: list[str] = ["*"]
3636

3737

3838
class GlobalSettings(BaseSettings):

0 commit comments

Comments
 (0)