mod_auth_internal, mod_auth_internal_hashed: Remove is_admin method from providers

This commit is contained in:
Matthew Wild 2010-06-22 19:14:55 +01:00
parent 1ae3061151
commit 067898649a
2 changed files with 2 additions and 20 deletions

View file

@ -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