Skip to main content
1-Visitor
July 6, 2018
Question

User group permissions at once

  • July 6, 2018
  • 1 reply
  • 1005 views

Hi,

 

In any services related to user permissions, how to add multiple inputs like multiple groups or multiple entities in single service at once. eg:

 

Things["ThingName"].AddRunTimePermission({
principal: "CM_Administrators_group" /* STRING */,    //here if I need to add multiple groups
allow: true /* BOOLEAN */,
resource: "*" /* STRING */,
type: "PropertyRead" /* STRING */,    //here if I need to add multiple types
principalType: "Group" /* STRING */
});

 

Regards,

Abhishek Kumar

    1 reply

    1-Visitor
    July 6, 2018

    you can't, just Iterate over the group list and call the same service.