Dear All,
I have a script which gets the members of a group in Jira.
Now I tried to run the script (in Script runner) and it gets an error. Maybe this is because the upgrade was taken in the meantime?
This is the groovy code:
import com.atlassian.jira.ComponentManager def componentManager = ComponentManager.instance componentManager.getUserUtil().getGroup("group-name").getUsers()
Our Jira version is 5.1.2
Can you please help what is wrong?
Thanks in advance,
Rumi
Use:
import com.atlassian.jira.component.ComponentAccessor def groupManager = ComponentAccessor.getGroupManager() groupManager.getUsersInGroup("group-name")
The JIRA API changes...
Hi Jamie,
many thanks it works again!
I got this result:
[user:1, smith:1, jones:1]
Let me ask you, what is this ':1' following each username?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You'd need to look at the implemenation of .toString() to be sure, but in this case it's the directory ID for that user.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Dan27 kind of late, but maybe will be helpful for others.
As you already have DelegatedApplicationUser object, you can use .getEmailAddress() method to achieve getting an email :-)
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.