mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
util.pubsub: Add method returning subset of config as metadata
Allows granting read only access to other sets of users using a separate access control capability, which makes sense as some properties may be intended to be public but read-only.
This commit is contained in:
parent
ef342f9734
commit
9005d35b48
2 changed files with 29 additions and 0 deletions
|
@ -605,4 +605,14 @@ describe("util.pubsub", function ()
|
|||
end);
|
||||
|
||||
end)
|
||||
|
||||
describe("metadata", function()
|
||||
it("works", function()
|
||||
local service = pubsub.new { metadata_subset = { "title" } };
|
||||
assert.truthy(service:create("node", true, { title = "Hello", secret = "hidden" }))
|
||||
local ok, meta = service:get_node_metadata("node", "nobody");
|
||||
assert.truthy(ok, meta);
|
||||
assert.same({ title = "Hello" }, meta);
|
||||
end)
|
||||
end);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue