mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_http: Warn if app is missing 'route'
Makes no sense to have a http module with no handlers Would have helped me when I accidentally module:provides("http", { GET = handler; })
This commit is contained in:
parent
b01915e81c
commit
19eb907613
1 changed files with 7 additions and 1 deletions
|
@ -160,7 +160,13 @@ function module.add_host(module)
|
|||
|
||||
local streaming = event.item.streaming_uploads;
|
||||
|
||||
for key, handler in pairs(event.item.route or {}) do
|
||||
if not event.item.route then
|
||||
-- TODO: Link to docs
|
||||
module:log("error", "HTTP app %q provides no 'route', a typo or mistake?", app_name);
|
||||
return;
|
||||
end
|
||||
|
||||
for key, handler in pairs(event.item.route) do
|
||||
local event_name = get_http_event(host, app_path, key);
|
||||
if event_name then
|
||||
local method = event_name:match("^%S+");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue