Currently we want a list of how many points does each user get in all tickets he/she has done. So we want a 'was assignee' as a field so that we can check which user has been assigned to a Ticket. Is this possible?
Hello @Jeanie Deng
There is no was assignee field. You can create a jql to find all issue you was working on :
assignee was "username"
But this query will find all issue where the user was assignee even when it was only for 30 seconds.
You can add date to this query to narrow the search :
assignee was currentUser() during (startofweek(), endofweek())
Or you can create a cusom field (userpicker) and when the assignee change, the old assignee put this name on it (or create a rule with automation) You will be able to create a jql based on this field.
Hope this helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.