Question... is it possible to provide a custom con...
# ktor
r
Question... is it possible to provide a custom content negotiator for a specific route? While still keeping the rest of the application serialized from the application level content negotiator?
I get the following when I try
Copy code
Installing RouteScopedPlugin to application and route is not supported
a
You can move the application-specific installation of the plugin into the routing root.
r
hmm that's interesting, thanks... just curious, at that point, what is even the point of having application level plugins? Couldn't you just consider an "app level" plugin to just be a root plugin, and then it would all just work?
a
Some plugins don't make sense at the routing level.