summaryrefslogtreecommitdiff
path: root/lib/api/notes.rb
diff options
context:
space:
mode:
authorNihad Abbasov <narkoz.2008@gmail.com>2012-11-29 11:33:41 -0800
committerNihad Abbasov <narkoz.2008@gmail.com>2012-11-29 12:11:00 -0800
commit1c5aa848ce6141b8679e167171096055dc7f4df3 (patch)
treef6069d78b1b2bf2372df1ad8b24bc44063ac3dda /lib/api/notes.rb
parent9a4974b7603c4df4b9b78970fb96e185ba97c250 (diff)
downloadgitlab-ce-1c5aa848ce6141b8679e167171096055dc7f4df3.tar.gz
API: get a single note
Diffstat (limited to 'lib/api/notes.rb')
-rw-r--r--lib/api/notes.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/lib/api/notes.rb b/lib/api/notes.rb
index 9b39ff4c88f..84b6beb5c71 100644
--- a/lib/api/notes.rb
+++ b/lib/api/notes.rb
@@ -33,6 +33,21 @@ module Gitlab
@noteable = user_project.send(:"#{noteables_str}").find(params[:"#{noteable_id_str}"])
present paginate(@noteable.notes), with: Entities::Note
end
+
+ # Get a single +noteable+ note
+ #
+ # Parameters:
+ # id (required) - The ID or code name of a project
+ # noteable_id (required) - The ID of an issue or snippet
+ # note_id (required) - The ID of a note
+ # Example Request:
+ # GET /projects/:id/issues/:noteable_id/notes/:note_id
+ # GET /projects/:id/snippets/:noteable_id/notes/:note_id
+ get ":id/#{noteables_str}/:#{noteable_id_str}/notes/:note_id" do
+ @noteable = user_project.send(:"#{noteables_str}").find(params[:"#{noteable_id_str}"])
+ @note = @noteable.notes.find(params[:note_id])
+ present @note, with: Entities::Note
+ end
end
end
end