mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +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;
|
return info.enabled;
|
||||||
end
|
end
|
||||||
|
|
||||||
function provider.enable(username) -- luacheck: ignore 212
|
function provider.enable(username)
|
||||||
error "NYI"
|
-- TODO map store?
|
||||||
|
local account = accounts:get(username);
|
||||||
|
account.disabled = nil;
|
||||||
|
return accounts:set(username, account);
|
||||||
end
|
end
|
||||||
|
|
||||||
function provider.disable(username) -- luacheck: ignore 212
|
function provider.disable(username)
|
||||||
error "NYI"
|
local account = accounts:get(username);
|
||||||
|
account.disabled = true;
|
||||||
|
return accounts:set(username, account);
|
||||||
end
|
end
|
||||||
|
|
||||||
function provider.users()
|
function provider.users()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue