summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/api/notes.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/api/notes.rb b/lib/api/notes.rb
index d2857f3d2c7..9b39ff4c88f 100644
--- a/lib/api/notes.rb
+++ b/lib/api/notes.rb
@@ -27,7 +27,8 @@ module Gitlab
# id (required) - The ID or code name of a project
# noteable_id (required) - The ID of an issue or snippet
# Example Request:
- # GET /projects/:id/noteable/:noteable_id/notes
+ # GET /projects/:id/issues/:noteable_id/notes
+ # GET /projects/:id/snippets/:noteable_id/notes
get ":id/#{noteables_str}/:#{noteable_id_str}/notes" do
@noteable = user_project.send(:"#{noteables_str}").find(params[:"#{noteable_id_str}"])
present paginate(@noteable.notes), with: Entities::Note