Mercurial > prosody-modules
view mod_ignore_host_chatstates/mod_ignore_host_chatstates.lua @ 4486:4f41678ba00d
mod_rest/openapi: Fix dataform references
Thought I had moved these out into components.schemas?
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 02 Mar 2021 16:14:20 +0100 |
parents | aed47ebd26d3 |
children |
line wrap: on
line source
module:hook("message/host", function (event) local stanza = event.stanza; if #stanza.tags == 1 and stanza.tags[1].attr.xmlns == "http://jabber.org/protocol/chatstates" then return true; end end, -10);