Hi,
I am new writing add-ons/plugins for Jira.
Using Script Runner I can perform the following query that returns issues that where last updated by any user part of the Developer role.
issueFunction in lastUpdated("inRole Developers")
I would like to write a similar function that would return me issues where the assign is part of a specific role. Example:
issueFunction in Assignee("inRole Developers")
The documentation that I have found does not give examples on how to do this. Only a template is available.
https://gist.github.com/jechlin/11153983
Would you be able to provide some sample code or more comprehensive documentation on how to achieve this?
ComponentManager componentManager = ComponentManager.getInstance() ProjectRoleManager projectRoleManager = ComponentManager.getComponentInstanceOfType(ProjectRoleManager.class) as ProjectRoleManager ProjectRole devRole = projectRoleManager.getProjectRole("Developers") projectRoleManager.isUserInProjectRole(issue.assignee, devRole, issue.projectObject)
Thanks.
I would not call the function Assignee. You could do it your way but it would be slow as it requires retrieving each issue and calling your code on it.
It would be better, although harder, to write a query that ends up as the following query:
(project = X and assignee in (user1, user2, <all Developers of X>) || (project = Y and assignee in (user1, user2, <all Developers of Y>) || ... etc, for all visible projects
That looks complex but that will be fast to execute.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.