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:
Kim Alvefur 2020-05-02 20:32:43 +02:00
parent dc8d810f34
commit bfdff4488f

View file

@ -330,9 +330,18 @@ end
-- Anything in def_env will be accessible within the session as a global variable
--luacheck: ignore 212/self
local serialize_defaults = module:get_option("console_prettyprint_settings", { fatal = false, unquoted = true, maxdepth = 2})
def_env.output = {};
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);
end