Note

Currently, you cannot sign-up to the community. We're fixing the issue. Sorry for the inconvenience. Please use AIDA (check below) for any queries.

The Exalate team will be on holiday for the coming days - returning Jan 4
Enjoy & stay safe

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Introduction

Jira Cloud comment supports formatting like bold, italic, underline , colour fonts and many more. To sync this to Zendesk is not totally supported by Exalate. The reason being, Jira cloud is using Mark Up language where Zendesk is using Markdown and HTML both. Exalate has default methods and scripts to convert into Markdown but that has some limitation like it will not support colour fonts , images and few more.

...

Code Block
titleJira Cloud Incoming Sync Script
linenumberstrue
collapsetrue
if (firstSync) {
    issue.projectKey  = "SOURCE"
    // Set the same issue type as the source issue. If not found, set a default.
    issue.typeName    = nodeHelper.getIssueType(replica.type?.name, issue.projectKey)?.name ?: "New Feature"
    issue.description  = nodeHelper.toMarkDownFromHtml(replica.description)

}
issue.summary      = replica.summary
issue.attachments  = attachmentHelper.mergeAttachments(issue, replica)
issue.labels       = replica.labels
issue.comments     = nodeHelper.toMarkDownComments(commentHelper.mergeComments(issue, replica))

Questions

Questions List
filterrecent
asktrue
include-topicsany
spaceexacom

...