location
inline fun <T : Any> Route.location(noinline body: Route.() -> Unit): Route
Content copied to clipboard
Registers a route body for a location defined by the T class.
Class Tmust be annotated with Location.
fun <T : Any> Route.location(data: KClass<T>, body: Route.() -> Unit): Route
Content copied to clipboard
Registers a route body for a location defined by class data.
Class datamust be annotated with Location.
Retrieves the current call's location or fails if it is not available (request is not handled by a location class), or not yet available (invoked too early before the locations plugin takes place).