mirror of https://github.com/bjc/prosody
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
562 B
27 lines
562 B
module:hook("muc-config-form", function(event)
|
|
table.insert(event.form, {
|
|
type = "fixed";
|
|
value = "Room information";
|
|
});
|
|
end, 100);
|
|
|
|
module:hook("muc-config-form", function(event)
|
|
table.insert(event.form, {
|
|
type = "fixed";
|
|
value = "Access to the room";
|
|
});
|
|
end, 90);
|
|
|
|
module:hook("muc-config-form", function(event)
|
|
table.insert(event.form, {
|
|
type = "fixed";
|
|
value = "Permissions in the room";
|
|
});
|
|
end, 80);
|
|
|
|
module:hook("muc-config-form", function(event)
|
|
table.insert(event.form, {
|
|
type = "fixed";
|
|
value = "Other options";
|
|
});
|
|
end, 70);
|
|
|