# HG changeset patch # User Matthew Wild # Date 1277230495 -3600 # Node ID e425e27c12be809e00ed6cd843e99478a6c2978c # Parent e5234625fc42f1f0998bf4eaf37eb4a75ecfaecb mod_auth_internal, mod_auth_internal_hashed: Remove is_admin method from providers diff -r e5234625fc42 -r e425e27c12be plugins/mod_auth_internal.lua --- a/plugins/mod_auth_internal.lua Tue Jun 22 19:04:10 2010 +0100 +++ b/plugins/mod_auth_internal.lua Tue Jun 22 19:14:55 2010 +0100 @@ -93,16 +93,7 @@ }; return new_sasl(realm, getpass_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 diff -r e5234625fc42 -r e425e27c12be plugins/mod_auth_internal_hashed.lua --- a/plugins/mod_auth_internal_hashed.lua Tue Jun 22 19:04:10 2010 +0100 +++ b/plugins/mod_auth_internal_hashed.lua Tue Jun 22 19:14:55 2010 +0100 @@ -151,16 +151,7 @@ }; 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