Is there a straight-forward way of obtaining all issues somehow related to a specified user?
As a workaround, I've come up with this long and incomplete JQL:
assignee was currentUser() OR worklogAuthor = currentUser() OR reporter was currentUser() OR watcher = currentUser() OR voter = currentUser() OR assignee changed by currentUser() OR fixVersion changed by currentUser() OR priority changed by currentUser() OR reporter changed by currentUser() OR resolution changed by currentUser() OR status changed by currentUser()
The JQL above will miss any issues were the only action of the user has been adding a comment.
Any ideas? @Nic Brough [Adaptavist]?