| Syntax |
|
| Documentation | Create a new user:
password, the pasword of the user to be created.
|
| Examples | |
If no user object named 'Jack' exists, create it:
$set{password}{secret} if{$existsUser{JACK}}
$//A user named 'JACK' already exists. $//Trying to create another with the same name would cause an exception to be thrown } { $//Create the user. $createUser{$get{username}}{$get{password}} } |
|
| Group | Security |
| Minimum required transaction-mode: | UPDATE=SECURITY |
| Required scripting permission of the developer | PERMISSION_FL_ADMINISTRATIVE |
| Minimum parameters | 2 |
| Maximum parameters | 2 |