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:
Kim Alvefur 2019-08-23 01:04:00 +02:00
parent b8ad8ccc88
commit 39cb87a158
3 changed files with 15 additions and 9 deletions

View file

@ -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)