MUC: Add sections in room config form

This commit is contained in:
Matthew Wild 2018-07-13 15:47:08 +01:00
parent 1a0e7d5a10
commit 1f50e15c8e
10 changed files with 12 additions and 10 deletions

View file

@ -22,11 +22,11 @@ module:hook("muc-config-form", function(event)
table.insert(event.form, {
name = "muc#roomconfig_publicroom";
type = "boolean";
label = "Include room in public lists";
label = "Include room information in public lists";
desc = "Enable this to allow people to find the room";
value = not get_hidden(event.room);
});
end, 100-5);
end, 100-9);
module:hook("muc-config-submitted/muc#roomconfig_publicroom", function(event)
if set_hidden(event.room, not event.value) then

View file

@ -59,7 +59,7 @@ module:hook("muc-config-form", function(event)
desc = "Specify the number of previous messages sent to new users when they join the room";
value = tostring(get_defaulthistorymessages(event.room))
});
end, 100-10);
end, 70-5);
module:hook("muc-config-submitted/muc#roomconfig_historylength", function(event)
if set_historylength(event.room, event.value) then

View file

@ -37,7 +37,7 @@ local function add_form_option(event)
end
module:hook("muc-disco#info", add_disco_form);
module:hook("muc-config-form", add_form_option, 100-9.5);
module:hook("muc-config-form", add_form_option, 100-3);
module:hook("muc-config-submitted/muc#roomconfig_lang", function(event)
if set_language(event.room, event.value) then

View file

@ -85,7 +85,7 @@ module:hook("muc-config-form", function(event)
label = "Allow members to invite new members";
value = get_allow_member_invites(event.room);
});
end, 100-6);
end, 90-3);
module:hook("muc-config-submitted/muc#roomconfig_membersonly", function(event)
if set_members_only(event.room, event.value) then

View file

@ -85,6 +85,8 @@ local st = require "util.stanza";
local cache = require "util.cache";
local um_is_admin = require "core.usermanager".is_admin;
module:require "muc/config_form_sections";
module:depends("disco");
module:add_identity("conference", "text", module:get_option_string("name", "Prosody Chatrooms"));
module:add_feature("http://jabber.org/protocol/muc");

View file

@ -30,7 +30,7 @@ module:hook("muc-config-form", function(event)
desc = "In moderated rooms occupants must be given permission to speak by a room moderator";
value = get_moderated(event.room);
});
end, 100-4);
end, 80-3);
module:hook("muc-config-submitted/muc#roomconfig_moderatedroom", function(event)
if set_moderated(event.room, event.value) then

View file

@ -31,7 +31,7 @@ module:hook("muc-config-form", function(event)
label = "Password";
value = get_password(event.room) or "";
});
end, 100-7);
end, 90-2);
module:hook("muc-config-submitted/muc#roomconfig_roomsecret", function(event)
if set_password(event.room, event.value) then

View file

@ -26,7 +26,7 @@ module:hook("muc-config-form", function(event)
desc = "Rooms are automatically deleted when they are empty, unless this option is enabled";
value = get_persistent(event.room);
});
end, 100-3);
end, 100-5);
module:hook("muc-config-submitted/muc#roomconfig_persistentroom", function(event)
if set_persistent(event.room, event.value) then

View file

@ -45,7 +45,7 @@ module:hook("muc-config-form", function(event)
desc = "Choose whether anyone, or only moderators, may set the room's subject";
value = get_changesubject(event.room);
});
end, 100-8);
end, 80-1);
module:hook("muc-config-submitted/muc#roomconfig_changesubject", function(event)
if set_changesubject(event.room, event.value) then

View file

@ -38,7 +38,7 @@ module:hook("muc-config-form", function(event)
{ value = 'anyone', label = 'Anyone', default = whois == 'anyone' }
}
});
end, 100-9);
end, 80-4);
module:hook("muc-config-submitted/muc#roomconfig_whois", function(event)
if set_whois(event.room, event.value) then