Hi
I would like to get hold of the roles a user is in within a groovy script
Has anyone done this? The equivalent of the Show User Roles action on the administer user page.
I've looked through the API's for ProjectRoleService and ProjectRoleManager but I'm not seeing a way to get what I want back.
Tom
If you want to do this you propably need something like this:
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.user.ApplicationUser
import com.atlassian.jira.project.Project
import com.atlassian.jira.security.roles.*
String username = "username"
ApplicationUser user = ComponentAccessor.getUserManager().getUserByName(username)
String prjkey = "projectkey"
Project project = ComponentAccessor.getProjectManager().getProjectByCurrentKey(prjkey)
ProjectRoleManager prjrolemgr = ComponentAccessor.getComponent(ProjectRoleManager)Collection<ProjectRole>
prjroles = prjrolemgr.getProjectRoles(user, project)
return prjroles
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.