put
fun Route.put(path: String, body: PipelineInterceptor<Unit, ApplicationCall>): Route
Content copied to clipboard
Builds a route to match PUT
requests with specified path
Builds a route to match PUT
requests
inline fun <R : Any> Route.put(crossinline body: suspend PipelineContext<Unit, ApplicationCall>.(R) -> Unit): Route
Content copied to clipboard
Builds a route to match PUT
requests with receiving request body content of type R
inline fun <R : Any> Route.put(path: String, crossinline body: suspend PipelineContext<Unit, ApplicationCall>.(R) -> Unit): Route
Content copied to clipboard
Builds a route to match PUT
requests with specified path receiving request body content of type R