From 2e28b24183d37ce48a61e6f1845f1eac8414e992 Mon Sep 17 00:00:00 2001 From: Matthew Wild Date: Tue, 4 Jan 2011 17:12:28 +0000 Subject: mod_auth_internal_*: Support for delete_user method --- plugins/mod_auth_internal_plain.lua | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'plugins/mod_auth_internal_plain.lua') diff --git a/plugins/mod_auth_internal_plain.lua b/plugins/mod_auth_internal_plain.lua index 3721781b..ccaf8381 100644 --- a/plugins/mod_auth_internal_plain.lua +++ b/plugins/mod_auth_internal_plain.lua @@ -62,6 +62,10 @@ function new_default_provider(host) function provider.create_user(username, password) return datamanager.store(username, host, "accounts", {password = password}); end + + function provider.delete_user(username) + return datamanager.store(username, host, "accounts", nil); + end function provider.get_sasl_handler() local realm = module:get_option("sasl_realm") or module.host; -- cgit v1.2.3