aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/muc/config_form_sections.lib.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2018-07-13 15:53:39 +0100
committerMatthew Wild <mwild1@gmail.com>2018-07-13 15:53:39 +0100
commitb9235c9b5f7e33c48f74ad442307f97078755abc (patch)
tree542a6b41500700f779a9bff9b45522b902d10c1e /plugins/muc/config_form_sections.lib.lua
parent1f50e15c8e2a4d530df6318db7b1959e831230d6 (diff)
downloadprosody-b9235c9b5f7e33c48f74ad442307f97078755abc.tar.gz
prosody-b9235c9b5f7e33c48f74ad442307f97078755abc.zip
MUC: Commit forgotten file
Diffstat (limited to 'plugins/muc/config_form_sections.lib.lua')
-rw-r--r--plugins/muc/config_form_sections.lib.lua27
1 files changed, 27 insertions, 0 deletions
diff --git a/plugins/muc/config_form_sections.lib.lua b/plugins/muc/config_form_sections.lib.lua
new file mode 100644
index 00000000..34be5dc6
--- /dev/null
+++ b/plugins/muc/config_form_sections.lib.lua
@@ -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);