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