In order to generate an XSRFToken will use the following script
import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.security.xsrf.SimpleXsrfTokenGenerator def XSRFToken = ComponentAccessor.getComponent(SimpleXsrfTokenGenerator).generateToken()
In the email body will use that token in the URL. So that url will be something like
def actionLink = "${baseUrl}/secure/WorkflowUIDispatcher.jspa?id=${issueId}&action=${action.id}&atl_token=${XSRFToken}" "<a class='aui-button' href='${actionLink}'>${action.name}</a>"
where I will write the script which generates the XSRFToken and how I will pass the XSRFToken to the email body?
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.