Versions Compared

Key

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

...

Code Block
titleExcept reporter condition
//Except reporter condition

if(currentUser() == reporter) {
 return true;
}
return false;

 

Condition based on boolean expression

...

Code Block
interval tstSpent = "1d 4h";

interval tstEstimate = "1w";

interval tstRemaining = "3d 4h";


return (tstEstimate == (tstSpent + tstRemaining));

...