My company has its on intranet site and we are just getting started with Confluence and JIRA. I have been trying to subscribe to the calendar adding the URL but shows an error for the user name and password...
I thought the User/pass was for the confluence site but seems like is not the case. Even though, those boxes are not "required" because there is no *. Do you think that the user/pass is for the intranet site?
Thanks for the help
Hi @flaimo , I hope I'm not late answering the question here. You can utilise the RemoteIssueLinkService method to do the validation and delete the remote issue link safely.
I found a few community answers that has some sample groovy script on it:
I was able to get the removeRemoteIssueLink function from the first post to work.
If you ever need to completely delete all issue links this is the code that works for me (inside an Automation rule)
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.link.RemoteIssueLinkManager
// remove jira links
ComponentAccessor.issueLinkManager.removeIssueLinksNoChangeItems(issue)
// remove external links
def rilm = ComponentAccessor.getComponentOfType(RemoteIssueLinkManager.class)
rilm.getRemoteIssueLinksForIssue(issue).each {
rilm.removeRemoteIssueLink(it.getId(), currentUser)
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.