mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_storage_*: Tweak :summary API to allow future expansion with more fields
Eg might want to include last message, timestamp, chat state or other info.
This commit is contained in:
parent
b8ad8ccc88
commit
39cb87a158
3 changed files with 15 additions and 9 deletions
|
@ -446,12 +446,14 @@ function archive_store:summary(username, query)
|
|||
return engine:select(sql_query, unpack(args));
|
||||
end);
|
||||
if not ok then return ok, result end
|
||||
local summary = {};
|
||||
local counts = {};
|
||||
for row in result do
|
||||
local with, count = row[1], row[2];
|
||||
summary[with] = count;
|
||||
counts[with] = count;
|
||||
end
|
||||
return summary;
|
||||
return {
|
||||
counts = counts;
|
||||
};
|
||||
end
|
||||
|
||||
function archive_store:delete(username, query)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue