Software /
code /
prosody
Diff
core/usermanager.lua @ 2030:d9382a16af5b
usermanager: Changed function is_admin to allow checking for host-specific admins.
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Wed, 21 Oct 2009 11:39:02 +0500 |
parent | 1589:812ae3be7bed |
child | 2031:e82ceb5bbe49 |
line wrap: on
line diff
--- a/core/usermanager.lua Wed Oct 21 11:29:43 2009 +0500 +++ b/core/usermanager.lua Wed Oct 21 11:39:02 2009 +0500 @@ -66,8 +66,12 @@ return {["PLAIN"] = true, ["DIGEST-MD5"] = true}; -- TODO this should be taken from the config end -function is_admin(jid) - local admins = config.get("*", "core", "admins"); +function is_admin(jid, host) + host = host or "*"; + local admins = config.get(host, "core", "admins"); + if host ~= "*" and admins == config.get("*", "core", "admins") then + return nil; + end if type(admins) == "table" then jid = jid_bare(jid); for _,admin in ipairs(admins) do