From 5bf12bbb1d05e0f4fc2661ccd68e0c208499ba57 Mon Sep 17 00:00:00 2001 From: dosire Date: Wed, 30 Apr 2014 17:28:05 +0200 Subject: [PATCH] Make clear that notes also serve as comments. --- doc/api/README.md | 2 +- doc/api/issues.md | 4 ++++ doc/api/merge_requests.md | 4 ++++ doc/api/notes.md | 2 ++ 4 files changed, 11 insertions(+), 1 deletion(-) diff --git a/doc/api/README.md b/doc/api/README.md index 09c52350f3f..4ef4c031bc2 100644 --- a/doc/api/README.md +++ b/doc/api/README.md @@ -13,7 +13,7 @@ + [Merge Requests](merge_requests.md) + [Issues](issues.md) + [Milestones](milestones.md) -+ [Notes](notes.md) ++ [Notes](notes.md) (comments) + [Deploy Keys](deploy_keys.md) + [System Hooks](system_hooks.md) + [Groups](groups.md) diff --git a/doc/api/issues.md b/doc/api/issues.md index 823b72f5b0c..d18506f9ce6 100644 --- a/doc/api/issues.md +++ b/doc/api/issues.md @@ -193,3 +193,7 @@ Parameters: + `id` (required) - The project ID + `issue_id` (required) - The ID of the issue + +## Comments on issues + +Comments are done via the notes resource. diff --git a/doc/api/merge_requests.md b/doc/api/merge_requests.md index 2996f609d43..d5b106729c9 100644 --- a/doc/api/merge_requests.md +++ b/doc/api/merge_requests.md @@ -258,3 +258,7 @@ Parameters: } ] ``` + +## Comments on issues + +Comments are done via the notes resource. diff --git a/doc/api/notes.md b/doc/api/notes.md index b15ebdd2bac..e9ad6e00c73 100644 --- a/doc/api/notes.md +++ b/doc/api/notes.md @@ -1,3 +1,5 @@ +Notes can be wall notes or comments on snippets, issues or merge requests. + ## Wall ### List project wall notes -- GitLab