aboutsummaryrefslogtreecommitdiffstats
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
commitf014ba0feb218c5131e68cd14cafb1feb3e8d7ad (patch)
tree7f6684515718e0a79a132318da527041c442141c
parentce9eed3c88c9ec76e559dedb1ce101eff5433099 (diff)
downloadprosody-f014ba0feb218c5131e68cd14cafb1feb3e8d7ad.tar.gz
prosody-f014ba0feb218c5131e68cd14cafb1feb3e8d7ad.zip
mod_storage_memory: Support the purge driver method
-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;