mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_auth_internal{,_hashed}: Update is_admin to only report the admin status of the current host (ignores global admin rights), fixes global access traceback
This commit is contained in:
parent
10abcc0f7b
commit
79fcb39d49
2 changed files with 2 additions and 8 deletions
|
@ -159,16 +159,13 @@ function new_hashpass_provider(host)
|
|||
end
|
||||
|
||||
function provider.is_admin(jid)
|
||||
local admins = config.get(host, "core", "admins");
|
||||
local admins = module:get_option_array("admins");
|
||||
if admins ~= config.get("*", "core", "admins") and type(admins) == "table" then
|
||||
jid = jid_bare(jid);
|
||||
for _,admin in ipairs(admins) do
|
||||
if admin == jid then return true; end
|
||||
end
|
||||
elseif admins then
|
||||
log("error", "Option 'admins' for host '%s' is not a table", host);
|
||||
end
|
||||
return is_admin(jid); -- Test whether it's a global admin instead
|
||||
end
|
||||
return provider;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue