Software /
code /
prosody
Diff
plugins/mod_uptime.lua @ 421:63be85693710
Modules now sending disco replies
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Wed, 26 Nov 2008 08:27:09 +0500 |
parent | 314:851f271d25b0 |
child | 438:193f9dd64f17 |
line wrap: on
line diff
--- a/plugins/mod_uptime.lua Wed Nov 26 08:26:24 2008 +0500 +++ b/plugins/mod_uptime.lua Wed Nov 26 08:27:09 2008 +0500 @@ -6,6 +6,8 @@ local start_time = os.time(); +require "core.discomanager".set("uptime", "jabber:iq:last"); + add_iq_handler({"c2s", "s2sin"}, "jabber:iq:last", function (origin, stanza) if stanza.tags[1].name == "query" then @@ -20,5 +22,3 @@ end end end); - -