summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRegis Freyd <regis@gitlab.com>2017-03-07 08:58:23 -0500
committerRegis Freyd <regis@gitlab.com>2017-03-07 08:58:23 -0500
commitbc70493b054702ecbe079a9f1c2b0bf3e6ccc40c (patch)
treee36eb5d086e581a693c2dda0d14c878dd6d78b1b /doc
parentfb4a486605e10692b5577f0700fbce38bebcc311 (diff)
downloadgitlab-ce-bc70493b054702ecbe079a9f1c2b0bf3e6ccc40c.tar.gz
Change project count limit from 10 to 100000rfr-20170307-change-default-project-number-limit
Diffstat (limited to 'doc')
-rw-r--r--doc/api/settings.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/settings.md b/doc/api/settings.md
index 38a37cd920c..ad975e2e325 100644
--- a/doc/api/settings.md
+++ b/doc/api/settings.md
@@ -20,7 +20,7 @@ Example response:
```json
{
- "default_projects_limit" : 10,
+ "default_projects_limit" : 100000,
"signup_enabled" : true,
"id" : 1,
"default_branch_protection" : 2,
@@ -60,7 +60,7 @@ PUT /application/settings
| Attribute | Type | Required | Description |
| --------- | ---- | :------: | ----------- |
-| `default_projects_limit` | integer | no | Project limit per user. Default is `10` |
+| `default_projects_limit` | integer | no | Project limit per user. Default is `100000` |
| `signup_enabled` | boolean | no | Enable registration. Default is `true`. |
| `signin_enabled` | boolean | no | Enable login via a GitLab account. Default is `true`. |
| `gravatar_enabled` | boolean | no | Enable Gravatar |
@@ -98,7 +98,7 @@ Example response:
```json
{
"id": 1,
- "default_projects_limit": 10,
+ "default_projects_limit": 100000,
"signup_enabled": true,
"signin_enabled": true,
"gravatar_enabled": true,