Software /
code /
prosody
Diff
plugins/mod_watchregistrations.lua @ 12977:74b9e05af71e
plugins: Prefix module imports with prosody namespace
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 24 Mar 2023 13:15:28 +0100 |
parent | 8812:3d7fceaff230 |
child | 13202:173038306750 |
line wrap: on
line diff
--- a/plugins/mod_watchregistrations.lua Fri Mar 17 18:03:07 2023 +0100 +++ b/plugins/mod_watchregistrations.lua Fri Mar 24 13:15:28 2023 +0100 @@ -8,14 +8,14 @@ local host = module:get_host(); -local jid_prep = require "util.jid".prep; +local jid_prep = require "prosody.util.jid".prep; local registration_watchers = module:get_option_set("registration_watchers", module:get_option("admins", {})) / jid_prep; local registration_from = module:get_option_string("registration_from", host); local registration_notification = module:get_option_string("registration_notification", "User $username just registered on $host from $ip"); local msg_type = module:get_option_string("registration_notification_type", "chat"); -local st = require "util.stanza"; +local st = require "prosody.util.stanza"; module:hook("user-registered", function (user) module:log("debug", "Notifying of new registration");