History: Users Handler
Preview of version: 5
This handler is for creating new users into Tiki in an automated way, or adding existing users to groups in a simple way.
Creating users in this was may not be secure. Don't use it in a production server.
{REMARKSBOX (title="Notes for changes in Tiki 6" type="info")}
Creating users in this was may not be secure. Don't use it in a production server.
{REMARKSBOX (title="Notes for changes in Tiki 6" type="info")}
- Previously each user was
type: users
, now you can (additionally) usetype: user
- Email can be set and "must change password on first login" enabled on user creation
Complete example
YAML
Copy to clipboard
objects: - type: user data: name: aldo pass: whatever group: [ group1 ] - type: user data: name: ben pass: b-boy - type: user data: name: xavi - type: users data: name: marc email: marc@example.com change: n group: [ group2 ]
Options
Field Name | Mandatory | Value |
name | y | Username |
pass | If no pass is provided, then the pass will be the username | |
User's email (no validation message yet) | ||
change | User must change password on first login (y/n default: y) | |
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,the handler will not create it. |