console: Allow passing a config when creating a room
authorKim Alvefur <zash@zash.se>
Sat, 14 Apr 2018 16:14:55 +0200
changeset 8879 9e72e63819dc
parent 8878 be3230b42f12
child 8880 9182398c64b9
console: Allow passing a config when creating a room
plugins/mod_admin_telnet.lua
--- a/plugins/mod_admin_telnet.lua	Sat Apr 14 16:14:15 2018 +0200
+++ b/plugins/mod_admin_telnet.lua	Sat Apr 14 16:14:55 2018 +0200
@@ -991,14 +991,15 @@
 	return room_name, host;
 end
 
-function def_env.muc:create(room_jid)
+function def_env.muc:create(room_jid, config)
 	local room_name, host = check_muc(room_jid);
 	if not room_name then
 		return room_name, host;
 	end
 	if not room_name then return nil, host end
+	if config ~= nil and type(config) ~= "table" then return nil, "Config must be a table"; end
 	if hosts[host].modules.muc.get_room_from_jid(room_jid) then return nil, "Room exists already" end
-	return hosts[host].modules.muc.create_room(room_jid);
+	return hosts[host].modules.muc.create_room(room_jid, config);
 end
 
 function def_env.muc:room(room_jid)