mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_admin_telnet: Allow configuring pretty printing defaults
Mostly just to have the defaults merged so you can e.g. output:configure({maxdepth=1})
This commit is contained in:
parent
dc8d810f34
commit
bfdff4488f
1 changed files with 9 additions and 0 deletions
|
@ -330,9 +330,18 @@ end
|
||||||
-- Anything in def_env will be accessible within the session as a global variable
|
-- Anything in def_env will be accessible within the session as a global variable
|
||||||
|
|
||||||
--luacheck: ignore 212/self
|
--luacheck: ignore 212/self
|
||||||
|
local serialize_defaults = module:get_option("console_prettyprint_settings", { fatal = false, unquoted = true, maxdepth = 2})
|
||||||
|
|
||||||
def_env.output = {};
|
def_env.output = {};
|
||||||
function def_env.output:configure(opts)
|
function def_env.output:configure(opts)
|
||||||
|
if type(opts) ~= "table" then
|
||||||
|
opts = { preset = opts };
|
||||||
|
end
|
||||||
|
for k,v in pairs(serialize_defaults) do
|
||||||
|
if opts[k] == nil then
|
||||||
|
opts[k] = v;
|
||||||
|
end
|
||||||
|
end
|
||||||
self.session.serialize = serialization.new(opts);
|
self.session.serialize = serialization.new(opts);
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue