Hi,
I have a custom field "Release Prime" of type User Picker (multiple users).
I want to compare the "Release Prime" value is Server-release or Client-release or not using groovy script and do some action based on this validation in my Custom script validator- please advice how to do this.
| Username | Full Name | Login Details | Groups | Directory | Operations |
|---|---|---|---|---|---|
| Server-release release@kodiakptt.com | Not recorded | JIRA Internal Directory |
Here you are:
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.user.ApplicationUser
import com.atlassian.jira.user.util.UserManager
ArrayList<ApplicationUser> users = (ArrayList<ApplicationUser>) issue.getCustomFieldValue(ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("Соисполнители"))
UserManager userManager = ComponentAccessor.getUserManager();
return (users.contains(userManager.getUserByName("Server-release"))
|| (users.contains(userManager.getUserByName("Client-release")) ))
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.