mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_*: Also include timestmap of first message in :summary API
For completeness along with most recent timestamp. Might be nice to be able to order by oldest unread message.
This commit is contained in:
parent
d3c559bcc8
commit
9d5e31fd48
3 changed files with 15 additions and 3 deletions
|
@ -218,13 +218,18 @@ function archive:summary(username, query)
|
|||
local iter, err = self:find(username, query)
|
||||
if not iter then return iter, err; end
|
||||
local counts = {};
|
||||
local earliest = {};
|
||||
local latest = {};
|
||||
for _, _, when, with in iter do
|
||||
counts[with] = (counts[with] or 0) + 1;
|
||||
if earliest[with] == nil then
|
||||
earliest[with] = when;
|
||||
end
|
||||
latest[with] = when;
|
||||
end
|
||||
return {
|
||||
counts = counts;
|
||||
earliest = earliest;
|
||||
latest = latest;
|
||||
};
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue