Is there a way to provide a custom content negotia...
# ktor
r
Is there a way to provide a custom content negotiator for a specific route?
n
Yes, you must not have it installed globally (outside of a route) but then within a
route {}
you can call _install_(ContentNegotiation)
if using typesafe routes there’s a
_resource_<T> *{}*
call where you can do it
(I think
routing
and
route
are confusingly named - if you
install
in the former it will be app wide)