Conditions - Example 2
return isUserInRole(currentUser(), project, "developers");
For routines that return true or false there is no need to wrap them in an IF statement.
Peacock
return isUserInRole(currentUser(), project, "developers");
For routines that return true or false there is no need to wrap them in an IF statement.