mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
MUC: Commit forgotten file
This commit is contained in:
parent
1f50e15c8e
commit
b9235c9b5f
1 changed files with 27 additions and 0 deletions
27
plugins/muc/config_form_sections.lib.lua
Normal file
27
plugins/muc/config_form_sections.lib.lua
Normal 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);
|
Loading…
Add table
Add a link
Reference in a new issue