UPDATE: Not an issue after all. Not sure how to close a question.
Somehow, when my own account was created, my username was set as "admin", which I can tell by looking at an autogenerated JQL when I select myself.
I can't get a new board to show up any issues assigned to myself, even if the JQL is pulling up those issues in issue search. Any ideas?
what do you see w/ the following JQL?
assignee = currentuser()
I've actually tracked this down to a different weird bug, so it appears that the admin username is not the culprit!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
maybe you could share with the Community here as an answer for future searchers.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
My new board, which was grouped by epic, was hiding assigned issues that were within an unassigned epic. The funny thing was, if I grouped by other factors (by user, story, etc) then the issues showed up correctly.
The JQL had to be modified to show issues of type bug/story/task/etc assigned to specific users but any issues of type epic, for the board to properly show all issues I expected.
project = PROJNAME AND assignee in (X,Y,Z) AND issuetype in (Bug, Story, Sub-task) OR issuetype in (Epic) ORDER BY Rank ASC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.