문제

I tried to use the following jql but it resulted in jql validation error:

component in componentsLeadByUser( currentUser() )

Error in the JQL Query: Expecting ')' or ',' but got '('.

When I replace the currentUser() with concrete user names, it works well. but i would like to create an universal filter for all users for a shared dashboard.

Could you please help me with this question?

도움이 되었습니까?

해결책

According to documentation "Advanced Searching Functions"

You can optionally specify a user, or if the user is omitted the current user (i.e. you) will be used.

Therefore to find jira issues with componets lead by the current user:

component in componentsLeadByUser()

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top