aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--plugins/mod_auth_internal_hashed.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/mod_auth_internal_hashed.lua b/plugins/mod_auth_internal_hashed.lua
index 97e85f54..56f7d5d6 100644
--- a/plugins/mod_auth_internal_hashed.lua
+++ b/plugins/mod_auth_internal_hashed.lua
@@ -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