mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http_files: Expose function other modules can use to combine their routes with file paths to serve
This commit is contained in:
parent
87cf947c6c
commit
4130b38a58
1 changed files with 8 additions and 0 deletions
|
@ -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", {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue