I have the following code which checks if user is in a certain group "SG_EU_DEV_JIRA_LDM_Users"
import com.atlassian.jira.component.ComponentAccessor def user = ComponentAccessor.getJiraAuthenticationContext().getUser() //Check if user is in LDM group def isLDM = ComponentAccessor.getUserUtil().getGroupNamesForUser(user.name).contains("SG_EU_DEV_JIRA_LDM_Users")
But i now need to write another Behaviours script to validate a user's Project Role membership.
For example i need to check if the user is in the project role, "Product Owners".
I'm struggling, how can this be achieved?
Any help is greatly appreciated.
Thanks
Conor
Hi Conor,
try something like
import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.security.roles.ProjectRoleManager def issue = underlyingIssue def currentUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser() def projectRoleManager = ComponentAccessor.getComponentOfType(ProjectRoleManager) def role = projectRoleManager.getProjectRole("Administrators") return projectRoleManager.isUserInProjectRole(currentUser, role, issue.getProjectObject())
regards, Thanos
Hi Thanos,
When i am using this script it is showing error in defining issue.
Please help asap i have to close this today
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.