Created
May 24, 2018 22:57
-
-
Save nohtyp/6e91d8a5b9082f4a0b055ea7af315225 to your computer and use it in GitHub Desktop.
This Gist wll get the releasedate for the version in the fixversions field in Jira and returns dueDate if not available.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Gather due date based on fixed version or issue due date | |
string getvers; | |
if (isNull(fixVersions)) { | |
return dueDate; | |
} | |
else { | |
getvers = fixVersions; | |
return admGetProjectVersion(project, getvers).releaseDate; | |
//return admGetProjectVersions(project); | |
//return fixVersions; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment