...
Code Block | ||
---|---|---|
| ||
//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)); |
...