util.pubsub: Expand comment on return type from get_items

This commit is contained in:
Kim Alvefur 2018-09-01 00:45:51 +02:00
parent 8957ef2f7d
commit fb2fdc660b

View file

@ -583,7 +583,7 @@ function service:purge(node, actor, notify) --> ok, err
return true
end
function service:get_items(node, actor, id) --> ok, err
function service:get_items(node, actor, id) --> (true, { id, [id] = node }) or (false, err)
-- Access checking
if not self:may(node, actor, "get_items") then
return false, "forbidden";