Our new Appfire Documentation Space is now live!

Take a look here! If you have any questions please email support@appfire.com

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

This article provides the code snippet to delete attachment(s) that have a specific word in the file name using Build-your-own (scripted) Post-function

\uD83D\uDCD8 Instructions

  1. Navigate to the intended workflow to make the necessary changes in the edit mode.

  2. Select the required transition.

  3. Select the Post functions tab and click Add post function.

  4. Add the Build-your-own (scripted) Post-function

  5. Add the below Nunjucks script:

    {% for att in issue.fields.attachment %}
    {% if (att | field("filename")).includes("test") %}
    {{ "/rest/api/2/attachment/:id" | callJira(verb="DELETE",params={"id":att | field("id")}) }}
    {% endif %}
    {% endfor %}

The above template deletes the attachment(s) that contain the word test in the filename (modify test in line #2 with your desired text)

If this post-function is added on the create transition, select the checkbox “Delay the execution of this post-function” under “Delayed execution” and select a delay of 3 seconds.

References

  • No labels