MUC: Commit forgotten file

This commit is contained in:
Matthew Wild 2018-07-13 15:53:39 +01:00
parent 1f50e15c8e
commit b9235c9b5f

View file

@ -0,0 +1,27 @@
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);