mod_storage_internal: Support the 'key' archive query field

This commit is contained in:
Kim Alvefur 2017-04-15 02:27:07 +02:00
parent 098b1c9663
commit 2e1a6cd73e

View file

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