diff options
author | Kim Alvefur <zash@zash.se> | 2016-04-28 22:57:53 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-04-28 22:57:53 +0200 |
commit | 8bb9e615d5841b84fcbab596363931ee7e089af1 (patch) | |
tree | 9c8c747c7cb54e24dc05e11dc1cd7046eb434a6b | |
parent | c18892c9aaa0e15bc245325c32264a9e3b66457b (diff) | |
download | prosody-8bb9e615d5841b84fcbab596363931ee7e089af1.tar.gz prosody-8bb9e615d5841b84fcbab596363931ee7e089af1.zip |
MUC: Add event for when room is done being created
-rw-r--r-- | plugins/muc/mod_muc.lua | 2 | ||||
-rw-r--r-- | plugins/muc/muc.lib.lua | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/plugins/muc/mod_muc.lua b/plugins/muc/mod_muc.lua index 65782338..c50567e9 100644 --- a/plugins/muc/mod_muc.lua +++ b/plugins/muc/mod_muc.lua @@ -210,7 +210,7 @@ module:hook("host-disco-items", function(event) end end); -module:hook("muc-room-pre-create", function(event) +module:hook("muc-room-created", function(event) track_room(event.room); end, -1000); diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index 8efa295e..337d2ae4 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -435,6 +435,12 @@ function room_mt:handle_first_presence(origin, stanza) origin = origin; jid = real_jid; }); + module:fire_event("muc-room-created", { + room = self; + creator = dest_occupant; + stanza = stanza; + origin = origin; + }); return true; end |