Warning |
---|
Looking for the documentation on the newest versions of SIL Engine and the Simple Issue Language for Jira 8 for Server/Data Center? Click here ! |
Warning |
---|
The availability of the users personal data may be impacted by the recent changes by Atlassian in order to meet GDPR compliance. See the following for more information: |
Info | ||
---|---|---|
| ||
|
Syntax
userExists(user)
Description
Excerpt |
---|
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
Code Block |
---|
userExists("Administrator"); |
Returns : True "true" if Administrator is the username of a registered Jira user , or False and "false" otherwise.
Notes
Note |
---|
The look-up is first made after the userkey, then after the username. |
...