1
0
-1
    CommentAdd your comment...

    1 answer

    1.  
      2
      1
      0

      On your zendesk side, make sure you send the labels:

      // Outgoing processor Zendesk side
      replica.labels = issue.labels


      Then on Jira, you can make exalate to look from the available components in the project:



      // Incoming processor Jira side
      def project = issue.project ?: nodeHelper.getProject(issue.projectKey)
      issue.components = replica.labels.collect{ l ->
        project.components.find{it.name.equalsIgnoreCase(l.label)}
      }.findAll{it}




        CommentAdd your comment...