Versions Compared

Key

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

...

Code Block
linenumberstrue
#foreach ($att in $issue.lastcomment.attachments)
   $jirassimo.includeAttachment($att.id) 
#end


Sending attachments from issue description

Code Block
linenumberstrue
#foreach ($att in $issue.renderedFields.descriptionAttachments)
   $jirassimo.includeAttachment($att.id) 
#end

Attaching files added during workflow transition

...