From 270a43370a4cd9e5f222ad707f68f42088d5ae06 Mon Sep 17 00:00:00 2001 From: Nihad Abbasov Date: Sat, 1 Dec 2012 02:20:45 -0800 Subject: API: get a single wall note --- lib/api/notes.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'lib/api/notes.rb') diff --git a/lib/api/notes.rb b/lib/api/notes.rb index b47ff5c300f..a3e1858458d 100644 --- a/lib/api/notes.rb +++ b/lib/api/notes.rb @@ -17,6 +17,18 @@ module Gitlab present paginate(@notes), with: Entities::Note end + # Get a single project wall note + # + # Parameters: + # id (required) - The ID or code name of a project + # note_id (required) - The ID of a note + # Example Request: + # GET /projects/:id/notes/:note_id + get ":id/notes/:note_id" do + @note = user_project.common_notes.find(params[:note_id]) + present @note, with: Entities::Note + end + # Create a new project wall note # # Parameters: -- cgit v1.2.1