diff options
author | Waqas Hussain <waqas20@gmail.com> | 2009-10-21 11:39:02 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2009-10-21 11:39:02 +0500 |
commit | 057cf59598c1fa755fbbb7a0c9e55b40fc00ce78 (patch) | |
tree | 8e940747ed05b73527b27d825c1e7e37538d5125 /core | |
parent | 2eb8cf191a1cfdeedf38c18b8ad07d2b8f760581 (diff) | |
download | prosody-057cf59598c1fa755fbbb7a0c9e55b40fc00ce78.tar.gz prosody-057cf59598c1fa755fbbb7a0c9e55b40fc00ce78.zip |
usermanager: Changed function is_admin to allow checking for host-specific admins.
Diffstat (limited to 'core')
-rw-r--r-- | core/usermanager.lua | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/core/usermanager.lua b/core/usermanager.lua index 6c36fa29..04154cdb 100644 --- a/core/usermanager.lua +++ b/core/usermanager.lua @@ -66,8 +66,12 @@ function get_supported_methods(host) 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 |