mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Bumper commit for the new modulemanager API \o/ Updates all the modules, though some more changes may be in store.
This commit is contained in:
parent
d70ee791d5
commit
a153b3c267
17 changed files with 144 additions and 97 deletions
|
@ -7,7 +7,7 @@ local legacy = require "util.datetime".legacy;
|
|||
|
||||
require "core.discomanager".set("time", "urn:xmpp:time");
|
||||
|
||||
add_iq_handler({"c2s", "s2sin"}, "urn:xmpp:time",
|
||||
module:add_iq_handler({"c2s", "s2sin"}, "urn:xmpp:time",
|
||||
function(session, stanza)
|
||||
if stanza.attr.type == "get" then
|
||||
session.send(st.reply(stanza):tag("time", {xmlns="urn:xmpp:time"})
|
||||
|
@ -20,7 +20,7 @@ add_iq_handler({"c2s", "s2sin"}, "urn:xmpp:time",
|
|||
|
||||
require "core.discomanager".set("time", "jabber:iq:time");
|
||||
|
||||
add_iq_handler({"c2s", "s2sin"}, "jabber:iq:time",
|
||||
module:add_iq_handler({"c2s", "s2sin"}, "jabber:iq:time",
|
||||
function(session, stanza)
|
||||
if stanza.attr.type == "get" then
|
||||
session.send(st.reply(stanza):tag("query", {xmlns="jabber:iq:time"})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue