mirror of
https://github.com/bjc/prosody.git
synced 2025-04-01 20:27:39 +03:00
mod_auth_internal_hashed: Shorten call path
Why did it call a function defined in the same module through usermanager?
This commit is contained in:
parent
c11d121c06
commit
9dd7ce434d
1 changed files with 2 additions and 3 deletions
|
@ -10,7 +10,6 @@
|
|||
local max = math.max;
|
||||
|
||||
local scram_hashers = require "util.sasl.scram".hashers;
|
||||
local usermanager = require "core.usermanager";
|
||||
local generate_uuid = require "util.uuid".generate;
|
||||
local new_sasl = require "util.sasl".new;
|
||||
local hex = require"util.hex";
|
||||
|
@ -163,8 +162,8 @@ end
|
|||
|
||||
function provider.get_sasl_handler()
|
||||
local testpass_authentication_profile = {
|
||||
plain_test = function(_, username, password, realm)
|
||||
return usermanager.test_password(username, realm, password), provider.is_enabled(username);
|
||||
plain_test = function(_, username, password)
|
||||
return provider.test_password(username, password), provider.is_enabled(username);
|
||||
end,
|
||||
[scram_name] = function(_, username)
|
||||
local credentials = accounts:get(username);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue