Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Changing issue security level from a custom groovy post function

Jacob Zammit Xuereb
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
July 9, 2015

Changing issue security level from custom groovy post function shows that the security level has changed in the 'Activity' however the issue security level still remains as it was before. The user performing the operation has the permissions to set issue security level as well.

This post function checks the selected option from a single choice drop down and according to the selected value an issue security level should be set for the issue the post function was triggered from, however this is not changing as described above.

Note: the user can change the issue security level manually and the update validation result returns no errors in fact it is being valid

Thanks in advance.

1 answer

0 votes
Juan Francisco Sánchez Ramos October 9, 2016

Hi look use this groovy:

 

/* Variables */
CustomFieldManager customFieldManager     = ComponentAccessor.getCustomFieldManager()
MutableIssue issueMutable              = issue;
CustomField cfTypeSupport = customFieldManager.getCustomFieldObject("customfield_" + oLectorProperties.getProperty("typeofsupport"))

try {

   String contentValue = issueMutable.getCustomFieldValue(cfTypeSupport)
   oLog.escribir("Typo soporte: " + contentValue.trim())
   if(contentValue.trim().equals("Dudas y Soporte experto")){
      oLog.escribir("ENTRA")
      issueMutable.setSecurityLevelId(Long.parseLong(oLectorProperties.getProperty("security.all")));
      oLog.escribir("SETEA SECURITY")
   }

} catch (Exception eException) {

   oLog.escribir(" > Exception > " + eException.getMessage());
}catch (NumberFormatException nFException) {
   oLog.escribir(" > Exception > " + nFException.getMessage());
}

good luck

Suggest an answer

Log in or Sign up to answer