Mercurial > prosody-modules
changeset 5118:7bce75e74f86
Merge
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 18 Dec 2022 15:30:02 +0100 |
parents | d2a84e6aed2b (current diff) 2b94ee74d1f1 (diff) |
children | 048e339706ba |
files | mod_http_muc_log/mod_http_muc_log.lua mod_http_muc_log/static/style.css mod_http_muc_log/static/timestamps.js |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_audit/mod_audit.lua Fri Dec 16 22:30:47 2022 +0000 +++ b/mod_audit/mod_audit.lua Sun Dec 18 15:30:02 2022 +0100 @@ -1,5 +1,8 @@ module:set_global(); +local audit_log_limit = module:get_option_number("audit_log_limit", 10000); +local cleanup_after = module:get_option_string("audit_log_expires_after", "2w"); + local time_now = os.time; local st = require "util.stanza"; local moduleapi = require "core.moduleapi"; @@ -81,5 +84,3 @@ function moduleapi.audit(module, user, event_type, extra) audit(module.host, user, "mod_" .. module:get_name(), event_type, extra); end - -module:hook("audit", audit, 0);