1
0
-1

Hi,


Is it possible to synchronize fixVersions based on "status"?

For example, I only want to sync fixVersions if "fixVersion in unreleasedVersions()"


Thanks and best regards,

Berry.

    CommentAdd your comment...

    1 answer

    1.  
      2
      1
      0

      Sure! On your outgoing sync you could do:

      replica.fixVersions = issue.fixVersions.findAll{!it.released}

      That would send only the fix versions of the issue that are not released.

        CommentAdd your comment...