The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Restrict or Hide Specific Component from options for users based on project role when raising JIRA

Vasanta Kumaar
Contributor
February 4, 2021

We need to prevent user to create JIRA with specific component based on user role or is there any way to hide the component from user based on the role.

 

I tried to hide the Component based on the user role but not working, Can some help me to fix this. 

I am configured the script in Field Behaviour.

 

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.security.roles.ProjectRoleManager
import static com.atlassian.jira.issue.IssueFieldConstants.*
import static com.atlassian.jira.issue.IssueFieldConstants.ISSUE_TYPE

def projectRoleManager = ComponentAccessor.getComponent(ProjectRoleManager)
def projectComponentManager = ComponentAccessor.getProjectComponentManager()
def components = projectComponentManager.findAllForProject(issueContext.projectObject.id)

def user = ComponentAccessor.jiraAuthenticationContext.loggedInUser
def componentField = getFieldById(COMPONENTS)
def availablecomponents = []

//use this def and if code to check project roles
def remoteUsersRoles = projectRoleManager.getProjectRoles(user, issueContext.projectObject)*.name

if ("Special Users" in remoteUsersRoles)
{
availablecomponents.setFormValue(components.findAll { it.name in ["01-DEVELOPMENT", "02-HELPDESK", "03-SECURITY"] }*.id)
}

else {
availablecomponents.setFormValue(components.findAll { it.name in ["02-HELPDESK", "03-SECURITY" ] }*.id)
}

componentField.setFieldOptions(COMPONENTS)

Thanks,

Vasantakumaar. 

1 comment

Comments for this post are closed

Community moderators have prevented the ability to post new comments.

Steven Behnke
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 Champions.
February 5, 2021

I hope this is helpful.

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.security.roles.ProjectRoleManager
import static com.atlassian.jira.issue.IssueFieldConstants.COMPONENTS

def projectRoleManager = ComponentAccessor.getComponent ProjectRoleManager.class
def currentUser = ComponentAccessor.jiraAuthenticationContext.loggedInUser

def targetRoleName = 'Special Users'
def project = getIssueContext().projectObject
def projectComponents = project.components
def currentUserRoleNames = projectRoleManager.getProjectRoles(currentUser, project)*.name

if (!currentUserRoleNames.contains(targetRoleName)) {
getFieldById(COMPONENTS).setFieldOptions(
projectComponents.findAll {
it.name in [
'02-HELPDESK',
'03-SECURITY'
]
}.collectEntries {
[
it.id.toString(),
it.name
]
}
)
}

Like # people like this
Vasanta Kumaar
Contributor
February 5, 2021

Thanks @Steven Behnke

 

The code which you shared is working.

TAGS
AUG Leaders

Atlassian Community Events