mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
core.modulemanager: Split lists across multiple lines for improved readability
Patches will also be easier to read.
This commit is contained in:
parent
213edf5203
commit
2ad505a81f
1 changed files with 18 additions and 2 deletions
|
@ -23,8 +23,24 @@ local debug_traceback = debug.traceback;
|
|||
local setmetatable, rawget = setmetatable, rawget;
|
||||
local ipairs, pairs, type, t_insert = ipairs, pairs, type, table.insert;
|
||||
|
||||
local autoload_modules = {prosody.platform, "presence", "message", "iq", "offline", "c2s", "s2s", "s2s_auth_certs"};
|
||||
local component_inheritable_modules = {"tls", "saslauth", "dialback", "iq", "s2s", "s2s_bidi"};
|
||||
local autoload_modules = {
|
||||
prosody.platform,
|
||||
"presence",
|
||||
"message",
|
||||
"iq",
|
||||
"offline",
|
||||
"c2s",
|
||||
"s2s",
|
||||
"s2s_auth_certs",
|
||||
};
|
||||
local component_inheritable_modules = {
|
||||
"tls",
|
||||
"saslauth",
|
||||
"dialback",
|
||||
"iq",
|
||||
"s2s",
|
||||
"s2s_bidi",
|
||||
};
|
||||
|
||||
-- We need this to let modules access the real global namespace
|
||||
local _G = _G;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue