summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/api/users.md6
-rw-r--r--doc/raketasks/user_management.md9
2 files changed, 13 insertions, 2 deletions
diff --git a/doc/api/users.md b/doc/api/users.md
index a8b7685b503..cd141daadc8 100644
--- a/doc/api/users.md
+++ b/doc/api/users.md
@@ -57,7 +57,8 @@ GET /users
"color_scheme_id": 2,
"is_admin": false,
"avatar_url": "http://localhost:3000/uploads/user/avatar/1/cd8.jpeg",
- "can_create_group": true
+ "can_create_group": true,
+ "current_sign_in_at": "2014-03-19T13:12:15Z"
},
{
"id": 2,
@@ -79,7 +80,8 @@ GET /users
"avatar_url": "http://localhost:3000/uploads/user/avatar/1/cd8.jpeg",
"can_create_group": true,
"can_create_project": true,
- "projects_limit": 100
+ "projects_limit": 100,
+ "current_sign_in_at": "2014-03-19T17:54:13Z"
}
]
```
diff --git a/doc/raketasks/user_management.md b/doc/raketasks/user_management.md
index 80b01ca4043..4fbd20762da 100644
--- a/doc/raketasks/user_management.md
+++ b/doc/raketasks/user_management.md
@@ -47,3 +47,12 @@ sudo gitlab-rake gitlab:import:all_users_to_all_groups
# installation from source
bundle exec rake gitlab:import:all_users_to_all_groups RAILS_ENV=production
```
+
+## Maintain tight control over the number of active users on your GitLab installation
+
+- Enable this setting to keep new users blocked until they have been cleared by the admin (default: false).
+
+
+```
+block_auto_created_users: false
+```