diff options
| author | Peter Marko <peter.marko@siemens.com> | 2019-02-13 23:38:11 +0100 |
|---|---|---|
| committer | Peter Marko <peter.marko@siemens.com> | 2019-05-29 16:08:25 +0200 |
| commit | 40490cc4922fedbf4512109429cdc2c5aed65ded (patch) | |
| tree | bb2be4aa53b223c2031c3accd4b5398ab90b7598 /doc/api | |
| parent | 106f449d6938280452c52e1ee86461e5ceed685e (diff) | |
| download | gitlab-ce-40490cc4922fedbf4512109429cdc2c5aed65ded.tar.gz | |
Add wiki size to project statistics
Diffstat (limited to 'doc/api')
| -rw-r--r-- | doc/api/groups.md | 1 | ||||
| -rw-r--r-- | doc/api/projects.md | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/doc/api/groups.md b/doc/api/groups.md index 907b443d355..20789a1d4a4 100644 --- a/doc/api/groups.md +++ b/doc/api/groups.md @@ -68,6 +68,7 @@ GET /groups?statistics=true "statistics": { "storage_size" : 212, "repository_size" : 33, + "wiki_size" : 100, "lfs_objects_size" : 123, "job_artifacts_size" : 57 diff --git a/doc/api/projects.md b/doc/api/projects.md index 951961e45ff..75669d85803 100644 --- a/doc/api/projects.md +++ b/doc/api/projects.md @@ -153,6 +153,7 @@ When the user is authenticated and `simple` is not set this returns something li "commit_count": 37, "storage_size": 1038090, "repository_size": 1038090, + "wiki_size" : 0, "lfs_objects_size": 0, "job_artifacts_size": 0 }, @@ -234,6 +235,7 @@ When the user is authenticated and `simple` is not set this returns something li "commit_count": 12, "storage_size": 2066080, "repository_size": 2066080, + "wiki_size" : 0, "lfs_objects_size": 0, "job_artifacts_size": 0 }, @@ -342,6 +344,7 @@ GET /users/:user_id/projects "commit_count": 37, "storage_size": 1038090, "repository_size": 1038090, + "wiki_size" : 0, "lfs_objects_size": 0, "job_artifacts_size": 0 }, @@ -423,6 +426,7 @@ GET /users/:user_id/projects "commit_count": 12, "storage_size": 2066080, "repository_size": 2066080, + "wiki_size" : 0, "lfs_objects_size": 0, "job_artifacts_size": 0 }, @@ -548,6 +552,7 @@ GET /projects/:id "commit_count": 37, "storage_size": 1038090, "repository_size": 1038090, + "wiki_size" : 0, "lfs_objects_size": 0, "job_artifacts_size": 0 }, |
