I used to be able to see all worked logged for a user by using worklogAuthor = User Name. However, this now seems to return all work logged to any ticket to which User Name logged work.
Did something change with the functionality of this JQL function?
example:
worklogAuthor in membersOf("Scrum Team") and worklogDate >= startOfWeek(-5)
Used to give me access to:
user name 1 | issue key1 | hours user name 1 worked
user name 1 | issue key2 | hours user name 1 worked
user name 2 | issue key1 | hours user name 2 worked
user name 2 | issue key3 | hours user name 2 worked
Sorry, that should look like
worklogAuthor = userID and worklogDate >= startOfWeek(-5)
Was:
issue key1 | hours userID worked
issue key2 | hours userID worked
issue key3 | hours userID worked
I am now seeing
issue key1 | hours everyone worked
issue key2 | hours everyone worked
issue key3 | hours everyone worked
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.