Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

#foreach ($o in $!issue.fields.customfield_10001)
    $jirassimo.organizationEmails($!o.id),
#end

 

$jirassimo.resolveEmails($accountIds)

Given a java.util.List of account IDs. Returns a list of email addresses resolved from those accounts.

Usage example, resolving emails of newly added request participants:

#foreach ($ic in $issue.lastchange.items)
  #if ($ic.fieldId == "customfield_10103") 
        $jirassimo.resolveEmails($jirassimo.getNewElements($ic.from, $ic.to))
  #end
#end