Our new Appfire Documentation Space is now live!
Take a look here! If you have any questions please email support@appfire.com
Add a web link to an issue
This article provides the code snippet to add a web link to an issue, using Build-your-own (scripted) Post-function (JMWE app) post-function and callJira filter.
Instructions
Navigate to the intended workflow to make the necessary changes in the edit mode.
Select the required transition.
Select the Post functions tab and click
Add post function
.Add the “Build-your-own (scripted) Post-function (JMWE app)” post-function.
Add the below Nunjucks template:
{{"/rest/api/2/issue/:issue/remotelink" | callJira(verb=("post"),params={"issue":issue.key},body={"object":{ url:"https://innovalog.atlassian.net/wiki", title:"Innovalog" } }) }}
With this, the URL "https://innovalog.atlassian.net/wiki" will be linked to the current issue, with the title "Innovalog" - modify them as per your use case.
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