mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_memory: Implement :user iteration API
This commit is contained in:
parent
1e4a0ebba2
commit
4b6a1153f4
1 changed files with 8 additions and 0 deletions
|
@ -22,6 +22,10 @@ local function _purge_store(self, username)
|
|||
return true;
|
||||
end
|
||||
|
||||
local function _users(self)
|
||||
return next, self.store, nil;
|
||||
end
|
||||
|
||||
local keyval_store = {};
|
||||
keyval_store.__index = keyval_store;
|
||||
|
||||
|
@ -39,9 +43,13 @@ end
|
|||
|
||||
keyval_store.purge = _purge_store;
|
||||
|
||||
keyval_store.users = _users;
|
||||
|
||||
local archive_store = {};
|
||||
archive_store.__index = archive_store;
|
||||
|
||||
archive_store.users = _users;
|
||||
|
||||
function archive_store:append(username, key, value, when, with)
|
||||
if is_stanza(value) then
|
||||
value = st.preserialize(value);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue