diff mod_auth_ldap2/mod_auth_ldap.lua @ 814:881ec9919144

mod_auth_*: Use module:provides(), and don't explicitly specify provider.name.
author Waqas Hussain <waqas20@gmail.com>
date Thu, 13 Sep 2012 00:08:29 +0500
parents 1d51c5e38faa
children
line wrap: on
line diff
--- a/mod_auth_ldap2/mod_auth_ldap.lua	Wed Sep 12 23:58:01 2012 +0500
+++ b/mod_auth_ldap2/mod_auth_ldap.lua	Thu Sep 13 00:08:29 2012 +0500
@@ -20,7 +20,7 @@
     return;
 end
 
-local provider = { name = 'ldap' }
+local provider = {}
 
 function provider.test_password(username, password)
     return ldap.bind(username, password);
@@ -81,4 +81,4 @@
     };
 end
 
-module:add_item("auth-provider", provider);
+module:provides("auth", provider);