mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_auth_internal, mod_auth_internal_hashed: Remove is_admin method from providers
This commit is contained in:
parent
1ae3061151
commit
067898649a
2 changed files with 2 additions and 20 deletions
|
@ -151,16 +151,7 @@ function new_hashpass_provider(host)
|
|||
};
|
||||
return new_sasl(realm, testpass_authentication_profile);
|
||||
end
|
||||
|
||||
function provider.is_admin(jid)
|
||||
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
|
||||
end
|
||||
end
|
||||
|
||||
return provider;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue