Hi!,
Actual scenario is when I attach a attachment to request I am able to copy the attachment to task but if I attach other attachment to request both previous one and current attachments both are copying so that in task I am getting one attachment two times.
This is the code I'm currently using.
import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.issue.AttachmentManager import com.atlassian.jira.issue.comments.Comment def currentUser = ComponentAccessor.getJiraAuthenticationContext().getUser(); AttachmentManager attachmentManager = ComponentAccessor.getAttachmentManager(); attachmentManager.copyAttachments(issueObject, currentUser, linkedIssueObject.key);
Thanks in advance!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.