Is there a view in JIRA that can show me the list of activities made by a specific resource? As well as activities that affect that resource?
And, I would also like to group my resources and want to see the activities of an entire group as well.
Hopefully this gives me filters that allow me to:
- Select activities from specific dates
- Select kind of activity (Show only changes affecting task's time, etc)
If by resource you mean a Jira user then consider using the updatedby() function an example is given below.
issuekey IN updatedBy(jsmith)
you can find more information about this function in this document - advanced-search-reference-jql-functions
I believe this will work for groups as well.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.