mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_auth_internal_hashed: Add stub methods for enabling and disabling users
But how and where?
This commit is contained in:
parent
01fedfa5be
commit
4704e98af6
1 changed files with 8 additions and 0 deletions
|
@ -115,6 +115,14 @@ function provider.is_enabled(username) -- luacheck: ignore 212
|
|||
return true;
|
||||
end
|
||||
|
||||
function provider.enable(username) -- luacheck: ignore 212
|
||||
error "NYI"
|
||||
end
|
||||
|
||||
function provider.disable(username) -- luacheck: ignore 212
|
||||
error "NYI"
|
||||
end
|
||||
|
||||
function provider.users()
|
||||
return accounts:users();
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue