mod_http_files: Expose function other modules can use to combine their routes with file paths to serve

This commit is contained in:
Kim Alvefur 2012-12-21 20:40:29 +01:00
parent 87cf947c6c
commit 4130b38a58

View file

@ -126,6 +126,14 @@ function serve(opts)
return serve_file; return serve_file;
end end
function wrap_route(routes)
for route,handler in pairs(routes) do
if type(handler) == "table" and handler.path then
routes[route] = serve(handler);
end
end
return routes;
end
if base_path then if base_path then
module:provides("http", { module:provides("http", {