mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_auth_internal_*: Support for delete_user method
This commit is contained in:
parent
8854a71059
commit
2e28b24183
2 changed files with 8 additions and 0 deletions
|
@ -135,6 +135,10 @@ function new_hashpass_provider(host)
|
|||
return datamanager.store(username, host, "accounts", {stored_key = stored_key_hex, server_key = server_key_hex, salt = salt, iteration_count = iteration_count});
|
||||
end
|
||||
|
||||
function provider.delete_user(username)
|
||||
return datamanager.store(username, host, "accounts", nil);
|
||||
end
|
||||
|
||||
function provider.get_sasl_handler()
|
||||
local realm = module:get_option("sasl_realm") or module.host;
|
||||
local testpass_authentication_profile = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue