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()
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.
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.
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.
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.