From f1374c91409f2e22a0b1cc8890e87fbbd8d7d880 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Charvet=20=E9=BB=91=E7=93=9C?= Date: Sun, 17 Mar 2019 09:10:07 +0000 Subject: [PATCH] add doc for maximumContentLength override --- yesod-core/src/Yesod/Core/Class/Yesod.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/yesod-core/src/Yesod/Core/Class/Yesod.hs b/yesod-core/src/Yesod/Core/Class/Yesod.hs index 25c1e6c6..df8d195b 100644 --- a/yesod-core/src/Yesod/Core/Class/Yesod.hs +++ b/yesod-core/src/Yesod/Core/Class/Yesod.hs @@ -195,6 +195,7 @@ class RenderRoute site => Yesod site where addStaticContent _ _ _ = return Nothing -- | Maximum allowed length of the request body, in bytes. + -- This method may be ignored if 'maximumContentLengthIO' is overridden. -- -- If @Nothing@, no maximum is applied. --