]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
📝 Remove note about (now supported) feature from Swagger UI in `docs/en/docs/tutorial...
authorGreg Gandenberger <ggandenberger@shoprunner.com>
Thu, 7 Oct 2021 12:55:51 +0000 (07:55 -0500)
committerGitHub <noreply@github.com>
Thu, 7 Oct 2021 12:55:51 +0000 (12:55 +0000)
Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
docs/en/docs/tutorial/request-files.md

index 1619d6d2a7ec9a4e9c4dd97bfad61b255e976fd3..68ea654c29d4d6d027a1d6c17e95cbb530f7edb9 100644 (file)
@@ -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 <a href="https://github.com/swagger-api/swagger-ui/issues/4276" class="external-link" target="_blank">#4276</a> and <a href="https://github.com/swagger-api/swagger-ui/issues/3641" class="external-link" target="_blank">#3641</a>.
-
-    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`.