servant-multipart icon indicating copy to clipboard operation
servant-multipart copied to clipboard

Support for file uploads in multipart/form-data for servant

Results 20 servant-multipart issues
Sort by recently updated
recently updated
newest added
trafficstars

I needed the `LookupContext` constaint, but it's not exported. Would it make sense to move everything to `Servant.Multipart.Internal` (which exports everything) and then re-export the current API from `Servant.MultiPart`?

It would be nice if we can distinguish between optional and required arguments.

Hello, I would am interesting in using this library, specifically the client side functionality. What would it take to get a new release out and into Stackage? Thanks!

.. or change the description to indicate that this is only server-side.

enhancement
help wanted

servant-multipart-0.11.3 depends on `lens >= 4.17 && < 4.18`, while the previous version depended on `lens >= 4.0 && < 4.18`. servant-multipart uses four functions from `Control.Lens`, and looking at...

My use case is I am using `servant-purescript` to generate purescript code from my API, but since there is no `HasForeign` instance for `Servant.Multipart.MultipartForm`, compilation fails. I wish I could...

help wanted

`servant-multipart`, unlike most packages which introduce new combinators, isn't split up (into `-server`, `-docs`, etc.). So any API that uses it will incur all depedencies (and likely can't run in...

This PR passed `cabal test all --constraint 'lens ^>=5.3' --constraint 'network ^>=3.2' --allow-newer=servant-server:network --allow-newer=servant-foreign:lens --allow-newer=servant-docs:lens`. The main servant repo depends on some packages in this repo, and vice versa. So...

- Implemented lookupAllInputs to retrieve all textual inputs with a specific name attribute. - Implemented lookupAllFiles to retrieve all file inputs with a specific name attribute. - Implemented lookupInputAs to...