wai-extra-1.3.4.6: Provides some basic WAI handlers and middleware.

Safe HaskellNone

Network.Wai.Middleware.MethodOverridePost

Description

Changes the request-method via first post-parameter _method.

Synopsis

Documentation

methodOverridePost :: MiddlewareSource

Allows overriding of the HTTP request method via the _method post string parameter.

  • Looks for the Content-Type requestHeader.
  • If the header is set to application/x-www-form-urlencoded and the first POST parameter is _method then it changes the request-method to the value of that parameter.
  • This middlware only applies when the initial request method is POST.