I have created a custom field named stories using script runner fields which uses JQL to query the stories with in the Project.
Here is the Query
issuetype in ( "Story") AND project = "Prj A"
If I need to use the same Custom Filed in another project project , how would I use it. I want the Stories field to display stories related to that particular project only.
I do not want to create sperate custom fields for stories each project.
Kindly, Help with this.
I'm assuming this is an "Issue picker" type of field you've created via the Scriptrunner fields.
Then you can use the "Configuration Script" portion of the Scripted Field configuration to tell what JQL to user.
Here is the documentation for this feature
This is what you want to add to your config
import com.atlassian.jira.issue.Issue
getJql = { Issue issue, String configuredJql ->
"""issuetype in ( "Story") AND project = $issue.projectObject.key"""
}
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.