You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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"""
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.