org.http4k.format.multipartExtensions.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4k-multipart Show documentation
Show all versions of http4k-multipart Show documentation
Http4k multipart form support
package org.http4k.format
import org.http4k.lens.MultipartFormField
import org.http4k.lens.ParamMeta.ObjectParam
fun MultipartFormField.Companion.json(auto: Json) = with(auto) {
string().mapWithNewMeta({ parse(it) }, { compact(it) }, ObjectParam)
}
inline fun MultipartFormField.Companion.auto(auto: AutoMarshalling) = with(auto) {
string().mapWithNewMeta({ asA(it) }, { asFormatString(it) }, ObjectParam)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy