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
|
@ -10,7 +10,7 @@ local new_sasl = require "util.sasl".new;
|
|||
local datamanager = require "util.datamanager";
|
||||
|
||||
-- define auth provider
|
||||
local provider = { name = "anonymous" };
|
||||
local provider = {};
|
||||
|
||||
function provider.test_password(username, password)
|
||||
return nil, "Password based auth not supported.";
|
||||
|
@ -62,5 +62,5 @@ function module.unload()
|
|||
datamanager.remove_callback(dm_callback);
|
||||
end
|
||||
|
||||
module:add_item("auth-provider", provider);
|
||||
module:provides("auth", provider);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue