aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-11-07 20:30:21 +0100
committerKim Alvefur <zash@zash.se>2018-11-07 20:30:21 +0100
commit22f93591755167852c4f5a32dbcf55033b1bdc85 (patch)
tree7f6684515718e0a79a132318da527041c442141c /plugins
parentc12239de7a3d82ace0342bdefc3a5c7105411955 (diff)
downloadprosody-22f93591755167852c4f5a32dbcf55033b1bdc85.tar.gz
prosody-22f93591755167852c4f5a32dbcf55033b1bdc85.zip
mod_storage_memory: Support the purge driver method
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_storage_memory.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/mod_storage_memory.lua b/plugins/mod_storage_memory.lua
index 9659f9e7..ed04a5fb 100644
--- a/plugins/mod_storage_memory.lua
+++ b/plugins/mod_storage_memory.lua
@@ -197,6 +197,12 @@ function driver:open(store, typ) -- luacheck: ignore 212/self
return nil, "unsupported-store";
end
+function driver:purge(user) -- luacheck: ignore 212/self
+ for _, store in pairs(memory) do
+ store[user] = nil;
+ end
+end
+
if auto_purge_enabled then
module:hook("resource-unbind", function (event)
local user_bare_jid = event.session.username.."@"..event.session.host;