hi,
I need to delete entries in History and Emails tab (next to Activity) of an issue. I have a script which worked for History
import com.atlassian.jira.issue.Issue;
import com.atlassian.jira.component.ComponentAccessor
def issueManager = ComponentAccessor.getIssueManager()
Issue issue = issueManager.getIssueObject("ABC-1234")
def changeHistoryManager = ComponentAccessor.getChangeHistoryManager()
changeHistoryManager.removeAllChangeItems(issue)
But the script below dint work for Emails. It is returning 0 count of rows deleted -
import com.atlassian.jira.issue.Issue;
import com.atlassian.jira.component.ComponentAccessor
def issueManager = ComponentAccessor.getIssueManager()
Issue issue = issueManager.getIssueObject("ABC-1234")
def changeMailThreadManager = ComponentAccessor.getMailThreadManager()
Long issueid1 = 125481L
changeMailThreadManager.removeAssociatedEntries(issueid1)
what is wrong in above script and why it is not deleting email entries in Emails tab of issue?
regards,
Sandeep Upadhya
Community moderators have prevented the ability to post new answers.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.