get group of project role for the issue

Paresh Gandhi
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 15, 2014

I have below working code which can take out the user of project role and verifies if it is null or not

import com.atlassian.jira.component.ComponentAccessor

import com.atlassian.jira.security.roles.ProjectRoleManager

def projectRoleManager = ComponentAccessor.getComponent(ProjectRoleManager)

 

def projectRoleId = 10102  // ID of project role

def role = projectRoleManager.getProjectRole(projectRoleId)

def actors = projectRoleManager.getProjectRoleActors(role, issue.projectObject)

!(actors.users)

now i want to also check is there any gorup present for that role
looking for something !(actors.groups)

1 answer

1 accepted

0 votes
Answer accepted
Paresh Gandhi
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 16, 2014

it will be taken care automatically, no need to add explicitaly.

Suggest an answer

Log in or Sign up to answer