aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/usermanager.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/usermanager.lua b/core/usermanager.lua
index d4a00244..5e2e41fc 100644
--- a/core/usermanager.lua
+++ b/core/usermanager.lua
@@ -83,6 +83,10 @@ function create_user(username, password, host)
return hosts[host].users.create_user(username, password);
end
+function delete_user(username, host)
+ return hosts[host].users.delete_user(username);
+end
+
function get_sasl_handler(host)
return hosts[host].users.get_sasl_handler();
end