This
handler is for creating new users into Tiki in an automated way.
This is only for testing purposes. Don't use it in a production server.
Complete example
YAML
objects:
-
type: users
data:
name: aldo
pass: whatever
group: [ group1 ]
-
type: users
data:
name: ben
pass: b-boy
-
type: users
data:
name: xavi
-
type: users
data:
name: marc
group: [ group2 ]
Options
Field Name | Mandatory | Value
|
name | y | Username
|
pass | | If no pass is provided, then the pass will be the username
|
group | | If a name of a group is provided, then the user will be assigned to the group. If the group doesn't exist previously, then the handler will create it. If is null, then nothing will happen.
|