Hello everyone,
I have some outgoing web links,
How can i get them via scriptrunner?
You can get all your links using the RemoteIssueLinkManager
import com.atlassian.jira.issue.link.RemoteIssueLinkManager
import com.atlassian.jira.component.ComponentAccessor
def rlm = ComponentAccessor.getComponentOfType(RemoteIssueLinkManager.class)
def issue = ComponentAccessor.issueManager.getIssueObject("JSP-1922")
rlm.getRemoteIssueLinksForIssue(issue)*.getUrl()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.