@@ -, +, @@ Mojolicious::Routes::Route::detour REST API, so if you see data in it, that means the API (and the patch) works --- Koha/App/Plugin/RESTV1.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Koha/App/Plugin/RESTV1.pm +++ a/Koha/App/Plugin/RESTV1.pm @@ -26,7 +26,7 @@ use Koha::REST::V1; sub register { my ($self, $app) = @_; - $app->routes->any('/api')->detour(app => Koha::REST::V1->new); + $app->routes->any('/api')->partial(1)->to(app => Koha::REST::V1->new); } 1; --