Mercurial > prosody-modules
view mod_log_events/mod_log_events.lua @ 3424:6ae875c98daf
mod_atom: Check whether user exists
This is in order to prevent creation of PEP service objects for
non-existant users.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 03 Jan 2019 11:39:28 +0100 |
parents | 0e008f36a91c |
children |
line wrap: on
line source
module:set_global(); local helpers = require "util.helpers"; local function init(module, events, name) helpers.log_events(events, name, module._log); function module.unload() helpers.revert_log_events(events); end end init(module, prosody.events, "global"); function module.add_host(module) init(module, prosody.hosts[module.host].events, module.host); end