]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
📝 Add warning about storing user passwords (#1336)
authorStavros Korokithakis <hi@stavros.io>
Sun, 17 May 2020 11:48:05 +0000 (14:48 +0300)
committerGitHub <noreply@github.com>
Sun, 17 May 2020 11:48:05 +0000 (13:48 +0200)
docs/en/docs/tutorial/response-model.md

index 3f06cd4d573b58ee98b81b24c0f50e7f08b1be37..9dd0b6dee66247b42b731767acf9cdcf5fba480e 100644 (file)
@@ -52,7 +52,7 @@ In this case, it might not be a problem, because the user himself is sending the
 But if we use the same model for another *path operation*, we could be sending our user's passwords to every client.
 
 !!! danger
-    Never send the plain password of a user in a response.
+    Never store the plain password of a user or send it in a response.
 
 ## Add an output model