unExalateAfterProcessing

    Signature

    HelpersyncHelper
    Signature
    unExalateAfterProcessing()
    Description

    Creates an Unexalate event to stop the synchronization of an issue once it's synchronized.

    Introduced in5.0.35

    Example use

    Use this helper method to stop the synchronization of an issue once it's synchronized to the destination side.

    Stop the issue synchronization if the issue status is Closed.

    Incoming sync (destination side)

    if (issue.status.name == "Closed") {
        syncHelper.unExalateAfterProcessing()
    }