Hello :)
I need some help with unlinking issues:
Current code i have is:
import com.atlassian.jira.config.properties.PropertiesManager import com.atlassian.jira.component.ComponentAccessor; import com.atlassian.jira.issue.CustomFieldManager; import com.atlassian.jira.issue.fields.CustomField; import com.atlassian.jira.issue.Issue; import com.atlassian.jira.issue.IssueManager; import com.atlassian.jira.issue.MutableIssue; import com.atlassian.jira.event.type.EventDispatchOption import com.atlassian.jira.issue.UpdateIssueRequest import com.atlassian.jira.ComponentManager import org.apache.log4j.Category import com.atlassian.jira.issue.link.IssueLink; import com.atlassian.jira.ManagerFactory import com.atlassian.jira.issue.link.IssueLinkImpl MutableIssue issue = ComponentAccessor.getIssueManager().getIssueObject('CB-7493') def issueLinkManager = ComponentAccessor.getIssueLinkManager(); def user = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser() issueLinkManager.removeIssueLink(issue, user.name);
Many thanks!
Pon
Hello Pon.
May I suggest that you do a thorough search in the community before asking? It is highly likely that other users have already asked the same question.
Also, in this question you are not really saying if the script fails or not, or if it doesn't work, or if it gives out an exception of some sort.
Here you have a question about how to delete the link between a parent and a child issue.
Also, from where I can see at your code, removeIssueLink takes an Issue and an ApplicationUser. In the last line of your script:
issueLinkManager.removeIssueLink(issue, user.name);
You are passing "user.name", which is a String. You should change the line to
issueLinkManager.removeIssueLink(issue, user);
Hope this helps!.
Cheers
DYelamos
Thank you so much!@!!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.