It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
Hi,
I have written a groovy script to set different security levels to issue based on a customfield value. This code actually changes the security level but the it hides the transition/removes the permission to execute the transition from the users .
I want to set the issue security level and the transition also should be accessible for the users who have permission for that.
Please check my code and suggest
My code goes here:
import com.atlassian.jira.ComponentManager; import com.atlassian.jira.ManagerFactory ; import com.atlassian.jira.issue.security.IssueSecurityLevelManager; import com.atlassian.jira.issue.security.IssueSecuritySchemeManager; import com.atlassian.jira.issue.IssueImpl; import org.apache.log4j.Category ; import com.opensymphony.workflow.loader.ActionDescriptor; import com.atlassian.jira.issue.MutableIssue; import org.ofbiz.core.entity.GenericValue; import com.atlassian.jira.component.ComponentAccessor; import com.atlassian.jira.bc.project.component.ProjectComponent; import com.atlassian.jira.bc.project.component.ProjectComponentManager; import com.atlassian.jira.issue.Issue; import com.atlassian.jira.issue.IssueFactory; ComponentManager componentManager = ComponentManager.getInstance() ; def customFieldManager = ComponentAccessor.getCustomFieldManager(); def plant = customFieldManager.getCustomFieldObjectByName("Plant"); def plantValue = issue.getCustomFieldValue(plant) as String; if(issue.issueTypeObject.name == "Plants") { log.debug("**********Received plant value*********"); if(plantValue.contains("Rohtak")) { log.debug("******************Logging1******************") issue.setSecurityLevelId(12403) } else if(plantValue.contains("Patancheru")) { log.debug("******************Logging2******************") issue.setSecurityLevelId(12405) } else if(plantValue.contains("Ankleshwar")) { log.debug("******************Logging3******************") issue.setSecurityLevelId(12404) } else if(plantValue.contains("Kasna")) { log.debug("******************Logging4******************") issue.setSecurityLevelId(12406) } else { log.debug("******************Logging5******************") issue.setSecurityLevelId(12401) } } if(issue.issueTypeObject.name == "Non-Plants") { log.debug("******************Logging6******************") issue.setSecurityLevelId(12402) }
Thanks Nic for your reply.
The users are in the security level and have the transition permission also. then why the change in security level restricts the transition?I have tested it by adding Admin Id in a security level and created an issue. The same happens to me.
Hey admins! I’m Dave, Principal Product Manager here at Atlassian working on our cloud platform and security products. Cloud security is a moving target. As you adopt more products, employees consta...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs