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