Versions Compared

Key

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

Syntax

userExists(userNameOrKey)

Description

Excerpt

Checks if whether the specified user is a registered Confluence user.

...

boolean (true/false)

Returns true if the specified user is a registered Confluence user. Otherwise the routine returns false.

Example

Example 1

Code Block
return userExists("jdoe");

Checks if user "the jdoe"  user is a registered Confluence user.

...