You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hi All,
I'd like to ask for you help. We need to add 100+ members from more groups to another group. But in the Edit members section we cannot export the members list (I mean simply a Copy (CTRL+C). Do you know a Groovy runner script I can list all the members with, what I can copy then?
Thanks in advance!
Rumi
import com.atlassian.jira.ComponentManager def componentManager = ComponentManager.instance componentManager.getUserUtil().getGroup("jira-users").getUsers()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jamie,
from the above code, how to give the customized group names instead hard coded "jira-users"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Does this work if the group has more than 50 users?
The REST API only allows 50 users at a time. Wondering if that is true with getUsers method as well.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It works for me:
import com.atlassian.crowd.embedded.api.User import com.atlassian.jira.component.ComponentAccessor def userManager = ComponentAccessor.getUserManager() def groupManager = ComponentAccessor.getGroupManager() def group = userManager.getGroup("jira-users") Collection<User> usersInGroup = groupManager.getUsersInGroup(group) for (User user : usersInGroup){ // }
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.
Why? I just had to add the typecast: Collection<User> userList = (Collection<User>) groupManager.getUsersInGroup(group)
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.
Hi,
I have a question. I want to write group membership write user picker custom field. When I create issue, group picker custom field set group name (A,B,C etc.) . I want to write that group picker custom field value's (Group A or B,C etc. membership) another multi user picker custom field. It is possible ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If I understand you. You want to get all the users from the groups in the first CF, then update a user CF with them? Yes you can do that, just get the user objects from groups, then set the multi user CF to that value.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jamie,
Firstly , when issue create A Custom Field (Type=Group Custom Field) set group name. (X,Y,Z etc.) Then i want to according to A Custom Field group value (X,Y,Z etc.) write groups membership other custom field (multi user picer)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.