tjohnn
06/17/2019, 7:33 PMapplication.routing {
route("/admin/categories") {
...
get {...}
...
}
}
I keep getting this error after wrapping it:
Conversion failed, null returned io.ktor.features.CannotTransformContentToTypeException: Cannot transform this request's content to class io.ktor.http.Parameters
Code that throws the error:
application.routing {
authenticate(ADMIN_AUTH) {
route("/admin/categories") {
...
get {...}
...
}
}
}