Hello Team,
I want to these two permission rules while creating structure using scriptrunner.
Hi Jaspreet,
I've added a snippet below (omitted the imports for brevity) that shows you the code to add permissions. You will need to look up the PPT Admins group id on your Jira instance to reference.
def structure = structureManager.createStructure().setName("example struture").saveChanges() // you can also get a pre-existing structure
def permissions = []
permissions.addAll(structure.getPermissions()) // this makes sure you don't delete any previous permissions
permissions.add(PermissionRule.fromEncodedString("set:EDIT:role:10572:10022"))
structure.setPermissions(permissions)
structure.saveChanges()
If you'd like to add those permissions, the easiest way would be to reference those structures and print their getPermissions() method results in the script console, you could also use that method described above to copy the permissions from one structure to another.
Hope this helps. If you have any further questions about Structure and scripting, feel free to reach out to our solutions team at solutions@almworks.com or our fantastic support crew at support.almworks.com
Thanks for your help. it worked
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jaspreet, Alessandro from ALM Works here.
Could you please create a ticket at support.almworks for this?
Using Scriptrunner goes beyond using Structure default features so we would like to better understand what you are trying to accomplish with a customized solution.
Best regards,
Alessandro C.
ALM Works
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.