mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_storage_memory: Support the purge driver method
This commit is contained in:
parent
ce9eed3c88
commit
f014ba0feb
1 changed files with 6 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue