prosodyctl: Created a custom function, 'test', that prints back a welcoming message

This commit is contained in:
João Duarte 2019-06-07 11:36:13 +01:00
parent 2bb05d010d
commit 66bb4ab449

View file

@ -85,6 +85,10 @@ local prosodyctl_timeout = (configmanager.get("*", "prosodyctl_timeout") or 5) *
local commands = {};
local command = table.remove(arg, 1);
function commands.test()
show_message [[Well, hello there!]]
end
function commands.adduser(arg)
if not arg[1] or arg[1] == "--help" then
show_usage([[adduser JID]], [[Create the specified user account in Prosody]]);