mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_storage_internal: Support the 'key' archive query field
This commit is contained in:
parent
098b1c9663
commit
2e1a6cd73e
1 changed files with 5 additions and 0 deletions
|
@ -67,6 +67,11 @@ function archive:find(username, query)
|
|||
local i = 0;
|
||||
if query then
|
||||
items = array(items);
|
||||
if query.key then
|
||||
items:filter(function (item)
|
||||
return item.key == query.key;
|
||||
end);
|
||||
end
|
||||
if query.with then
|
||||
items:filter(function (item)
|
||||
return item.with == query.with;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue