You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
(MULTI USER PICKER FIELD )Need to associate the users into specified group while creation of ticket.
Hi @Vignesh Singh what users do you want to put in the specified group?
Most important, what are you trying to achieve?
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Alejandro_Suárez__Tecnofor_,
I want to add sprint users in group by having Multi user picker custom field.. When am selecting users from multi user picker field, they should enter the group automatically..
below mentioned script is for adding user into group by using single user picker field..
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.user.ApplicationUser
def groupManager = ComponentAccessor.getGroupManager()
def user = (ApplicationUser) ComponentAccessor.getCustomFieldManager().getCustomFieldObjet(10107).getValue(issue)
def group = groupManager.getGroup("New")
groupManager.addUserToGroup(user,group)
This script is working perfectly for adding user in the group automatically by having single user picker field.. The same is not working when i change single user picker field into multi user picker field.
Request you to provide script for Multiuser-picker field..
Thanks in advance
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.