mod_auth_internal_hashed: Add stub methods for enabling and disabling users

But how and where?
This commit is contained in:
Kim Alvefur 2023-02-22 15:32:40 +01:00
parent 01fedfa5be
commit 4704e98af6

View file

@ -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