Browse Source

Merge b63231b13b into 460f8d2cc8

pull/14115/merge
Flavius 13 hours ago
committed by GitHub
parent
commit
4914afc8ad
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      docs_src/cors/tutorial001_py310.py

2
docs_src/cors/tutorial001_py310.py

@ -13,7 +13,7 @@ origins = [
app.add_middleware(
CORSMiddleware,
allow_origins=origins,
allow_credentials=True,
allow_credentials=False,
allow_methods=["*"],
allow_headers=["*"],
)

Loading…
Cancel
Save