Hoogle Search
Within LTS Haskell 24.51 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
isWriteRequest :: Yesod site => Route site -> HandlerFor site Boolyesod-core Yesod.Core Determines whether the current request is a write request. By default, this assumes you are following RESTful principles, and determines this from request method. In particular, all except the following request methods are considered write: GET HEAD OPTIONS TRACE. This function is used to determine if a request is authorized; see isAuthorized.
setEqDerived :: Bool -> RouteOpts -> RouteOptsyesod-core Yesod.Core.Dispatch No documentation available.
type
RequestBodyContents = ([(Text, Text)], [(Text, FileInfo)])yesod-core Yesod.Core.Handler A tuple containing both the POST parameters and submitted files.
-
yesod-core Yesod.Core.Handler The parsed request information. This type augments the standard WAI Request with additional information.
-
yesod-core Yesod.Core.Handler No documentation available.
getRequest :: MonadHandler m => m YesodRequestyesod-core Yesod.Core.Handler No documentation available.
rawRequestBody :: forall (m :: Type -> Type) i . MonadHandler m => ConduitT i ByteString m ()yesod-core Yesod.Core.Handler Stream in the raw request body without any parsing.
reqAccept :: YesodRequest -> ![ContentType]yesod-core Yesod.Core.Handler An ordered list of the accepted content types. Since 1.2.0
reqCookies :: YesodRequest -> ![(Text, Text)]yesod-core Yesod.Core.Handler No documentation available.
reqGetParams :: YesodRequest -> ![(Text, Text)]yesod-core Yesod.Core.Handler Same as queryString, but decoded to Text.