We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Uploading a file to a website requires multipart form handling, which Ring provides with its wrap-multipart-params middleware.
wrap-multipart-params
(use 'ring.middleware.params 'ring.middleware.multipart-params) (def app (-> your-handler wrap-params wrap-multipart-params))
By default, uploads are stored in temporary files that are deleted an hour after being uploaded.