How to Copy Attachment with out duplicates ?

Samuel Gatica _ServiceRocket_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 31, 2017

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!

0 answers

Suggest an answer

Log in or Sign up to answer