From: Greg Gandenberger Date: Thu, 7 Oct 2021 12:55:51 +0000 (-0500) Subject: 📝 Remove note about (now supported) feature from Swagger UI in `docs/en/docs/tutorial... X-Git-Tag: 0.69.0~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=afe1f69e792a537b689f7b4733e7149ca123da71;p=thirdparty%2Ffastapi%2Ffastapi.git 📝 Remove note about (now supported) feature from Swagger UI in `docs/en/docs/tutorial/request-files.md` (#2803) Co-authored-by: Sebastián Ramírez --- diff --git a/docs/en/docs/tutorial/request-files.md b/docs/en/docs/tutorial/request-files.md index 1619d6d2a7..68ea654c29 100644 --- a/docs/en/docs/tutorial/request-files.md +++ b/docs/en/docs/tutorial/request-files.md @@ -127,13 +127,6 @@ To use that, declare a `List` of `bytes` or `UploadFile`: You will receive, as declared, a `list` of `bytes` or `UploadFile`s. -!!! note - Notice that, as of 2019-04-14, Swagger UI doesn't support multiple file uploads in the same form field. For more information, check #4276 and #3641. - - Nevertheless, **FastAPI** is already compatible with it, using the standard OpenAPI. - - So, whenever Swagger UI supports multi-file uploads, or any other tools that supports OpenAPI, they will be compatible with **FastAPI**. - !!! note "Technical Details" You could also use `from starlette.responses import HTMLResponse`.