mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_internal: Add the dates method
This commit is contained in:
parent
8be8224bba
commit
52cff8b490
1 changed files with 6 additions and 0 deletions
|
@ -120,6 +120,12 @@ function archive:find(username, query)
|
|||
end, count;
|
||||
end
|
||||
|
||||
function archive:dates(username)
|
||||
local items, err = datamanager.list_load(username, host, self.store);
|
||||
if not items then return items, err; end
|
||||
return array(items):pluck("when"):map(datetime.date):unique();
|
||||
end
|
||||
|
||||
function archive:delete(username, query)
|
||||
if not query or next(query) == nil then
|
||||
return datamanager.list_store(username, host, self.store, nil);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue