mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_http_files: Allow passing a string to serve()
This commit is contained in:
parent
a7f6283a2e
commit
59db48f8cb
1 changed files with 4 additions and 1 deletions
|
@ -51,6 +51,9 @@ end
|
|||
local cache = setmetatable({}, { __mode = "kv" }); -- Let the garbage collector have it if it wants to.
|
||||
|
||||
function serve(opts)
|
||||
if type(opts) ~= "table" then -- assume path string
|
||||
opts = { path = opts };
|
||||
end
|
||||
local base_path = opts.path;
|
||||
local dir_indices = opts.index_files or dir_indices;
|
||||
local directory_index = opts.directory_index;
|
||||
|
@ -128,7 +131,7 @@ end
|
|||
|
||||
function wrap_route(routes)
|
||||
for route,handler in pairs(routes) do
|
||||
if type(handler) == "table" and handler.path then
|
||||
if type(handler) ~= "function" then
|
||||
routes[route] = serve(handler);
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue