diff options
author | Dan Dunckel <dan@techaccelerator.com> | 2017-07-28 09:52:37 -0600 |
---|---|---|
committer | Dan Dunckel <dan@techaccelerator.com> | 2017-07-28 09:53:09 -0600 |
commit | 04e4210785ffd088458e24f08a9f94376558c0dc (patch) | |
tree | 17aecd4b4b67d63579ca32d650ed61888e441fd5 /doc/api/users.md | |
parent | 699a30f06b98445ca630db84cfafba5e0cd320b2 (diff) | |
download | gitlab-ce-04e4210785ffd088458e24f08a9f94376558c0dc.tar.gz |
Update documentation of user creation by replacing the 'confirm' param with 'skip_confirmation'
Diffstat (limited to 'doc/api/users.md')
-rw-r--r-- | doc/api/users.md | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/doc/api/users.md b/doc/api/users.md index 6e5ec3231c5..57a13eb477d 100644 --- a/doc/api/users.md +++ b/doc/api/users.md @@ -241,26 +241,26 @@ POST /users Parameters: -- `email` (required) - Email -- `password` (optional) - Password -- `reset_password` (optional) - Send user password reset link - true or false(default) -- `username` (required) - Username -- `name` (required) - Name -- `skype` (optional) - Skype ID -- `linkedin` (optional) - LinkedIn -- `twitter` (optional) - Twitter account -- `website_url` (optional) - Website URL -- `organization` (optional) - Organization name -- `projects_limit` (optional) - Number of projects user can create -- `extern_uid` (optional) - External UID -- `provider` (optional) - External provider name -- `bio` (optional) - User's biography -- `location` (optional) - User's location -- `admin` (optional) - User is admin - true or false (default) -- `can_create_group` (optional) - User can create groups - true or false -- `confirm` (optional) - Require confirmation - true (default) or false -- `external` (optional) - Flags the user as external - true or false(default) -- `avatar` (optional) - Image file for user's avatar +- `email` (required) - Email +- `password` (optional) - Password +- `reset_password` (optional) - Send user password reset link - true or false(default) +- `username` (required) - Username +- `name` (required) - Name +- `skype` (optional) - Skype ID +- `linkedin` (optional) - LinkedIn +- `twitter` (optional) - Twitter account +- `website_url` (optional) - Website URL +- `organization` (optional) - Organization name +- `projects_limit` (optional) - Number of projects user can create +- `extern_uid` (optional) - External UID +- `provider` (optional) - External provider name +- `bio` (optional) - User's biography +- `location` (optional) - User's location +- `admin` (optional) - User is admin - true or false (default) +- `can_create_group` (optional) - User can create groups - true or false +- `skip_confirmation` (optional) - Skip confirmation - true or false (default) +- `external` (optional) - Flags the user as external - true or false(default) +- `avatar` (optional) - Image file for user's avatar ## User modification |