Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

how to subscribe to a third party Calendar

Gian Paul Cruz del Valle
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
June 14, 2022

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

1 answer

1 accepted

Suggest an answer

Log in or Sign up to answer
0 votes
Answer accepted
John Chin
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 Champions.
January 27, 2021

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:

flaimo
Contributor
January 27, 2021

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)

 

Screenshot 2021-01-27 at 14.55.22.png

Like # people like this
TAGS
AUG Leaders

Atlassian Community Events