Signature
Helper | userHelper |
Signature | getByUsername(String username) |
Description | Returns a user object based on a Username
|
Introduced in | 0.8 |
Example use
// If the remote issue assignee exists in our system, transition the issue to 'Waiting for support' if (userHelper.getByUsername(replica.assignee.username) != null) { issue.doTransition = "Waiting for support" }