route¶
Declares a Ktor handler matching a Spine endpoint.
Example¶
routing {
route(Api.Users.logIn) {
val (user, token) = authService.verifyLogIn(body.username, body.password)
call.response.cookies.append("token", token)
respond(user)
}
}
For the full list of available methods, see TypedResponseScope.