util.encodings: Spell out all IDNA 2008 options ICU has
[prosody.git] / plugins / muc / config_form_sections.lib.lua
blob34be5dc65b8a15762e68955469bfc10fb9276b7c
1 module:hook("muc-config-form", function(event)
2 table.insert(event.form, {
3 type = "fixed";
4 value = "Room information";
5 });
6 end, 100);
8 module:hook("muc-config-form", function(event)
9 table.insert(event.form, {
10 type = "fixed";
11 value = "Access to the room";
12 });
13 end, 90);
15 module:hook("muc-config-form", function(event)
16 table.insert(event.form, {
17 type = "fixed";
18 value = "Permissions in the room";
19 });
20 end, 80);
22 module:hook("muc-config-form", function(event)
23 table.insert(event.form, {
24 type = "fixed";
25 value = "Other options";
26 });
27 end, 70);