Comparison

plugins/muc/description.lib.lua @ 6991:84e01dbb739e

MUC: Update all config form handlers to take advantage of the new per-option events
author Matthew Wild <mwild1@gmail.com>
date Fri, 11 Dec 2015 15:33:58 +0000
parent 6204:c3254827698d
child 7119:50b9a7e86de9
comparison
equal deleted inserted replaced
6990:f476e2497568 6991:84e01dbb739e
28 }); 28 });
29 end 29 end
30 module:hook("muc-disco#info", add_form_option); 30 module:hook("muc-disco#info", add_form_option);
31 module:hook("muc-config-form", add_form_option); 31 module:hook("muc-config-form", add_form_option);
32 32
33 module:hook("muc-config-submitted", function(event) 33 module:hook("muc-config-submitted/muc#roomconfig_roomdesc", function(event)
34 local new = event.fields["muc#roomconfig_roomdesc"]; 34 if set_description(event.room, event.value) then
35 if new ~= nil and set_description(event.room, new) then
36 event.status_codes["104"] = true; 35 event.status_codes["104"] = true;
37 end 36 end
38 end); 37 end);
39 38
40 return { 39 return {