diff options
author | Stan Hu <stanhu@gmail.com> | 2015-12-11 23:17:36 -0800 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2015-12-11 23:17:36 -0800 |
commit | 3efae53bd79db118463bfaeceb209bc91f63bd0b (patch) | |
tree | 8cd4d83e4d395c223ce9a3105f0bcc13b271e2fd /doc | |
parent | 74dcbec369aca9dfa181c9a82e1978ba2396773a (diff) | |
download | gitlab-ce-3efae53bd79db118463bfaeceb209bc91f63bd0b.tar.gz |
Add open_issues_count to project API
This is needed to support Huboard and a generally useful value.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/projects.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/api/projects.md b/doc/api/projects.md index 43a50a9a810..15956fe6df2 100644 --- a/doc/api/projects.md +++ b/doc/api/projects.md @@ -59,6 +59,7 @@ Parameters: "path": "diaspora-client", "path_with_namespace": "diaspora/diaspora-client", "issues_enabled": true, + "open_issues_count": 1, "merge_requests_enabled": true, "builds_enabled": true, "wiki_enabled": true, @@ -101,6 +102,7 @@ Parameters: "path": "puppet", "path_with_namespace": "brightbox/puppet", "issues_enabled": true, + "open_issues_count": 1, "merge_requests_enabled": true, "builds_enabled": true, "wiki_enabled": true, @@ -192,6 +194,7 @@ Parameters: "path": "diaspora-project-site", "path_with_namespace": "diaspora/diaspora-project-site", "issues_enabled": true, + "open_issues_count": 1, "merge_requests_enabled": true, "builds_enabled": true, "wiki_enabled": true, |