Custom Script Create transition post function if user in group exist change custom field

Benny Ankri June 18, 2017

Hi,

I am trying to set or change custom field according to the group the user that create the issue , if the user is in GROUP A , custome field would be XXX if user in GROUP B custome field would be YYY.

This is my script , it seems to run fine but it doenst work.

 

I am really new at this so tried to work with some scripts I found...

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.MutableIssue
import com.atlassian.jira.issue.IssueManager
import com.atlassian.jira.issue.fields.CustomField
import com.atlassian.jira.ComponentManager
import com.atlassian.jira.issue.CustomFieldManager


CustomFieldManager customFieldManager = ComponentAccessor.getCustomFieldManager();

if(ComponentAccessor.getGroupManager().isUserInGroup(issue.getReporter(), "QA")){
issue.setCustomFieldValue(customFieldManager.getCustomFieldObjectByName("Platform"), "All");

}

0 answers

Suggest an answer

Log in or Sign up to answer