Availability
This routine is available starting with katl-commons 1.0.
Syntax
userExists(user)
Description
Verifies if the selected user is registered Jira user.Parameters
Parameter name | Type | Required | Description |
---|---|---|---|
user | string | Yes | Username or userkey of the verified user |
Return type
boolean (true/false)
A true return value means that there is a registered Jira user associated with the specified username or userkey.
Example
Example 1
userExists("Administrator");
Returns: True if Administrator is the username of a registered JIRA user, or False otherwise.
Notes
The look-up is first made after the userkey, then after the username.
See also