mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_auth_*: Use module:provides().
This commit is contained in:
parent
2e28c81f01
commit
92515e7aa6
4 changed files with 8 additions and 8 deletions
|
@ -41,7 +41,7 @@ local iteration_count = 4096;
|
|||
|
||||
local host = module.host;
|
||||
-- define auth provider
|
||||
local provider = { name = "internal_hashed" };
|
||||
local provider = {};
|
||||
log("debug", "initializing internal_hashed authentication provider for host '%s'", host);
|
||||
|
||||
function provider.test_password(username, password)
|
||||
|
@ -145,5 +145,5 @@ function provider.get_sasl_handler()
|
|||
return new_sasl(host, testpass_authentication_profile);
|
||||
end
|
||||
|
||||
module:add_item("auth-provider", provider);
|
||||
module:provides("auth", provider);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue