We are using the following script runner validator for 'Create' transition to restrict issue creation to users who are not part of SG_Jira-RND_Users JIRA group. This is working fine for creation issue. However, the same validator is preventing users outside this group to clone the issue. Can someone suggest or modify this script so that it allows clone issue to all users and create issue only to that particular group mentioned above ?
import com.atlassian.jira.component.ComponentAccessordef groupManager = ComponentAccessor.getGroupManager()groupManager.isUserInGroup(issue.reporter?.name, 'SG_Jira-RND_Users')
Hello Shravanakumar:
The problem that you have is that create permissions are required for both creating and cloning issue, so it would not be possible to use this validator if you do not want to restrict cloning issues from that particular project.
However, we have a new feature, comming up within our "Clone Issue" script that will be able to set a new field named "As user" which will allow a funtionality like you describe, since another user could use that field to clone the issue as a user that has permissions to do so.
Hope this helps!
Cheers!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.