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
I would like to change the way that "assign to me" quick button in project main board works for my coworkers.
Right now, it is showing only tasks, that are assigned to the current user.
I would like it to filter in a way that shows all tasks that are assigned to the current user OR tasks that have at least one subtask assigned to the current user, event if the main task is not.
I think in JQL is sth like this:
current action provided by "Assign to me" quick button:
(assignee = currentUser()
desirable action provided by "Assign to me" quick button:
(assignee = currentUser() or issue in subtask("assignee = currentUser()")
Hi @Damian Żurawski, since the quick filter narrows down your current filter, I'm not quite sure if you can have that out of the box, I don't think so. However, I've come across a very similar use case previously and we used the ScriptRunner Enhanced Search with parentsOf function.
The search would be something like:
issueFunction in parentsOf("project = <project> and assignee = currentUser()")
You will probably need to adjust the query to your use case. Also, it's important to mention that there are other options and add-ons that might help you with this.
I hope that helps,
IL.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.