Versions Compared

Key

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

...

Info
titleRequired plugins

You will need the following JIRA plugin:

  1. JJUPIN

Level: BASIC

Comment

...

required

A validator that forces users to enter a comment during a transition, otherwise displaying a customized error message:

...

Code Block
titleSIL Code
string errorMsg = "You must choose a single fix version!";
if(size(fixVersions) > 1) {
   return false, "fixVersions", errorMsg;
}

Parent

...

status

A SIL validator which ensures that the current issue's parent issue is in one of the specified Statuses:

...