Mercurial > prosody-modules
view mod_uptime_presence/mod_uptime_presence.lua @ 5272:acab61ba7f02
mod_http_oauth2: Focus username field automatically
Reduces effort, not having to click or tab to focus the username field.
Should have no negative effects since there's no other elements one
might want to focus.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 23 Mar 2023 16:48:18 +0100 |
parents | d3497b81a3b5 |
children |
line wrap: on
line source
local st = require"util.stanza"; local datetime = require"util.datetime"; local presence = st.presence({ from = module.host }) :tag("delay", { xmlns = "urn:xmpp:delay", stamp = datetime.datetime(prosody.start_time) }); module:hook("presence/host", function(event) local stanza = event.stanza; if stanza.attr.type == "probe" then presence.attr.id = stanza.attr.id; presence.attr.to = stanza.attr.from; module:send(presence); return true; end end, 10);