Versions Compared

Key

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

...

Code Block
titleExcept assignee condition
//Except assignee condition

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

Except reporter condition

A workflow condition that allows you to disable a particular transition when the current logged in user is not the issue reporter user.

Code Block
titleExcept reporter condition
//Except reporter condition

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

...