Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-03-19 21:09:17 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-03-19 21:09:17 +0300
commit0eb4fd2f32e6804bc85868ba167170238e346279 (patch)
treec020e787ea29c77e1e9f53c21940f88a87a6e905 /doc/api/group_activity_analytics.md
parent78d8830cec030ff12afed3c8ae1dddec454d0a24 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/group_activity_analytics.md')
-rw-r--r--doc/api/group_activity_analytics.md8
1 files changed, 2 insertions, 6 deletions
diff --git a/doc/api/group_activity_analytics.md b/doc/api/group_activity_analytics.md
index 2e93967fe64..23dcb46dbc5 100644
--- a/doc/api/group_activity_analytics.md
+++ b/doc/api/group_activity_analytics.md
@@ -23,9 +23,7 @@ curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/ap
Example response:
```json
-[
- { issues_count : 10 }
-]
+{ "issues_count": 10 }
```
## Get count of recently created merge requests for group
@@ -49,7 +47,5 @@ curl --header "PRIVATE-TOKEN: <your_access_token>" https://gitlab.example.com/ap
Example response:
```json
-[
- { merge_requests_count : 10 }
-]
+{ "merge_requests_count": 10 }
```