mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_auth_internal_hashed: Implement methods to enable and disable users
This commit is contained in:
parent
96acef2170
commit
fe206323b5
1 changed files with 9 additions and 4 deletions
|
@ -117,12 +117,17 @@ function provider.is_enabled(username) -- luacheck: ignore 212
|
|||
return info.enabled;
|
||||
end
|
||||
|
||||
function provider.enable(username) -- luacheck: ignore 212
|
||||
error "NYI"
|
||||
function provider.enable(username)
|
||||
-- TODO map store?
|
||||
local account = accounts:get(username);
|
||||
account.disabled = nil;
|
||||
return accounts:set(username, account);
|
||||
end
|
||||
|
||||
function provider.disable(username) -- luacheck: ignore 212
|
||||
error "NYI"
|
||||
function provider.disable(username)
|
||||
local account = accounts:get(username);
|
||||
account.disabled = true;
|
||||
return accounts:set(username, account);
|
||||
end
|
||||
|
||||
function provider.users()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue