Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
Dear devs,
I am having some troubles in assigning certain permissions via code, just like I do in the composer.
For example, from the Composer I am able to assign permissions right to the Collections, but I struggle to understand how to achieve the same with the Extensions SDK.
Thanks for the help!
Solved! Go to Solution.
I have solved this, you can use:
CollectionsServices cs = new CollectionsServices();
try {
cs.AddCollectionVisibilityPermission("Things", org.getName(), "Organization");
} catch (Exception e) {
e.printStackTrace();
}
I have solved this, you can use:
CollectionsServices cs = new CollectionsServices();
try {
cs.AddCollectionVisibilityPermission("Things", org.getName(), "Organization");
} catch (Exception e) {
e.printStackTrace();
}