diff options
author | Kim Alvefur <zash@zash.se> | 2019-02-25 15:48:28 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-02-25 15:48:28 +0100 |
commit | 582fa3f46f105fe55447d607dceb43b5ac61d440 (patch) | |
tree | 21f89ef04949ba04cad55d6d93b4e97b66709053 /doc | |
parent | 3c50aa4902aada8eccbdd32f359a0cd6a52aceae (diff) | |
download | prosody-582fa3f46f105fe55447d607dceb43b5ac61d440.tar.gz prosody-582fa3f46f105fe55447d607dceb43b5ac61d440.zip |
mod_storage_internal: Implement a summary API returning message counts per contact
Diffstat (limited to 'doc')
-rw-r--r-- | doc/storage.tld | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/storage.tld b/doc/storage.tld index f1d33e58..057649a4 100644 --- a/doc/storage.tld +++ b/doc/storage.tld @@ -47,6 +47,9 @@ interface archive_store -- Array of dates which do have messages (Optional?) dates : ( self, string? ) -> ({ string }) | (nil, string) + + -- Map of counts per "with" field + summary : ( self, string?, archive_query? ) -> ( { string : integer } ) | (nil, string) end -- This represents moduleapi |