@@ -, +, @@ render the spec http://kohadev.myDNSname.org:8080/api/v1/ http://kohadev.myDNSname.org:8080/api/v1/.html $ kshell k$ prove t/db_dependent/api/v1/auth.t --- Koha/REST/V1/Auth.pm | 3 +++ 1 file changed, 3 insertions(+) --- a/Koha/REST/V1/Auth.pm +++ a/Koha/REST/V1/Auth.pm @@ -76,6 +76,9 @@ sub under { # Requesting a token shouldn't go through the API authenticaction chain $status = 1; } + elsif ( $namespace eq '' or $namespace eq '.html' ) { + $status = 1; + } else { $status = authenticate_api_request($c, { is_public => $is_public }); } --