You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hello Community,
I would like to hide the "bugdet info" tab(2) for people who don't have the administrators role.
I made this script , i put it in Initialiser function behaviours scriptrunner.
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.security.roles.ProjectRoleManager
import com.onresolve.jira.groovy.user.FieldBehavioursdef
projectRoleManager = ComponentAccessor.getComponent(ProjectRoleManager)
def user = ComponentAccessor.jiraAuthenticationContext.getLoggedInUser()
def project = underlyingIssue.getProjectObject()
log.warn("project: "+ project)
//Get Current User
def currentUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
log.warn("currentUser: "+ currentUser)
def role = projectRoleManager.getProjectRole("Administrators")
log.warn("role: "+ role)
def roleproj = projectRoleManager.isUserInProjectRole(currentUser, role, project)
log.warn("roleproj: "+ roleproj)
if (projectRoleManager.isUserInProjectRole(currentUser, role, project)){
showTab(2)
log.warn("switchTab('Infos Budget'): "+ switchTab(2))
} else{
hideTab(2)
log.warn("hideTab('Infos Budget'): "+ switchTab(2))
//disableTab(1)
//switchTab(2)
}
my problem this script work only in edit screen and not in create screen.
can you please correct this script community, i need your help.
Thanks
BR
Fayçal
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Catch up with Atlassian Product Managers in our 2020 Demo Den round-up! From Advanced Roadmaps to Code in Jira to Next-Gen Workflows, check out the videos below to help up-level your work in the new ...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.