...
More details can be found on Math Routines section.
Except assignee condition
A workflow condition that allows you to disable a particular transition when the current logged in user is not the issue assignee user.
Code Block | ||
---|---|---|
| ||
//Except assignee condition
if(currentUser()==assignee) {
return true;
}
return false; |
Condition based on boolean expression
...