View | Details | Raw Unified | Return to bug 29498
Collapse All | Expand All

(-)a/Koha/App/Plugin/RESTV1.pm (-2 / +1 lines)
Lines 26-32 use Koha::REST::V1; Link Here
26
sub register {
26
sub register {
27
    my ($self, $app) = @_;
27
    my ($self, $app) = @_;
28
28
29
    $app->routes->any('/api')->detour(app => Koha::REST::V1->new);
29
    $app->routes->any('/api')->partial(1)->to(app => Koha::REST::V1->new);
30
}
30
}
31
31
32
1;
32
1;
33
- 

Return to bug 29498