diff options
author | Kim Alvefur <zash@zash.se> | 2017-10-18 07:46:44 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-10-18 07:46:44 +0200 |
commit | 0e1cdb6a2aab36c3661d9d8b15364194dd9a580b (patch) | |
tree | 21c05789f1465477176834281f5f53f43861b25b /plugins/mod_pubsub/mod_pubsub.lua | |
parent | 54944ff8077fcbbbf2e2ca10810def39c93fdc59 (diff) | |
download | prosody-0e1cdb6a2aab36c3661d9d8b15364194dd9a580b.tar.gz prosody-0e1cdb6a2aab36c3661d9d8b15364194dd9a580b.zip |
mod_pubsub: Move dispatch function into pubsub.lib
Diffstat (limited to 'plugins/mod_pubsub/mod_pubsub.lua')
-rw-r--r-- | plugins/mod_pubsub/mod_pubsub.lua | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/plugins/mod_pubsub/mod_pubsub.lua b/plugins/mod_pubsub/mod_pubsub.lua index b1418ff9..eccb82d0 100644 --- a/plugins/mod_pubsub/mod_pubsub.lua +++ b/plugins/mod_pubsub/mod_pubsub.lua @@ -24,18 +24,7 @@ module:add_identity("pubsub", "service", pubsub_disco_name); module:add_feature("http://jabber.org/protocol/pubsub"); function handle_pubsub_iq(event) - local origin, stanza = event.origin, event.stanza; - local pubsub_tag = stanza.tags[1]; - local action = pubsub_tag.tags[1]; - if not action then - origin.send(st.error_reply(stanza, "cancel", "bad-request")); - return true; - end - local handler = handlers[stanza.attr.type.."_"..action.name]; - if handler then - handler(origin, stanza, action, service); - return true; - end + return lib_pubsub.handle_pubsub_iq(event, service); end local function simple_itemstore(config, node) |