Software /
code /
prosody-modules
Changeset
4713:ae3a129cc296
mod_cloud_notify: Record client id (or resource) and language during registration
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Mon, 18 Oct 2021 11:44:13 +0100 |
parents | 4712:48d7a5c16f2b |
children | 4714:bd83c9ada037 |
files | mod_cloud_notify/mod_cloud_notify.lua |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_cloud_notify/mod_cloud_notify.lua Mon Oct 18 11:43:48 2021 +0100 +++ b/mod_cloud_notify/mod_cloud_notify.lua Mon Oct 18 11:44:13 2021 +0100 @@ -188,6 +188,11 @@ include_payload = include_payload; options = publish_options and st.preserialize(publish_options); timestamp = os_time(); + client = { + id = origin.client_id; + resource = not origin.client_id and origin.jid.resource(origin.full_jid) or nil; + language = stanza.attr["xml:lang"]; + }; }; local allow_registration = module:fire_event("cloud_notify/registration", { origin = origin, stanza = stanza, push_info = push_service;