diff options
author | Nihad Abbasov <narkoz.2008@gmail.com> | 2012-12-01 02:20:45 -0800 |
---|---|---|
committer | Nihad Abbasov <narkoz.2008@gmail.com> | 2012-12-01 02:20:45 -0800 |
commit | 270a43370a4cd9e5f222ad707f68f42088d5ae06 (patch) | |
tree | 3925239a14c96c145860eacec4749df146f85438 | |
parent | b17e94c37bd5868c44f3aa085bfc3e44e227dc07 (diff) | |
download | gitlab-ce-270a43370a4cd9e5f222ad707f68f42088d5ae06.tar.gz |
API: get a single wall note
-rw-r--r-- | doc/api/notes.md | 13 | ||||
-rw-r--r-- | lib/api/notes.rb | 12 | ||||
-rw-r--r-- | spec/requests/api/notes_spec.rb | 8 |
3 files changed, 33 insertions, 0 deletions
diff --git a/doc/api/notes.md b/doc/api/notes.md index 97899fa0f6e..7b226dea44c 100644 --- a/doc/api/notes.md +++ b/doc/api/notes.md @@ -57,6 +57,19 @@ Parameters: ## Single note +### Single wall note + +Get a wall note. + +``` +GET /projects/:id/notes/:note_id +``` + +Parameters: + ++ `id` (required) - The ID or code name of a project ++ `note_id` (required) - The ID of a wall note + ### Single issue note Get an issue note. 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: diff --git a/spec/requests/api/notes_spec.rb b/spec/requests/api/notes_spec.rb index dc02e7a3efa..681ba01558e 100644 --- a/spec/requests/api/notes_spec.rb +++ b/spec/requests/api/notes_spec.rb @@ -30,6 +30,14 @@ describe Gitlab::API do end end + describe "GET /projects/:id/notes/:note_id" do + it "should return a wall note by id" do + get api("/projects/#{project.id}/notes/#{wall_note.id}", user) + response.status.should == 200 + json_response['body'].should == wall_note.note + end + end + describe "POST /projects/:id/notes" do it "should create a new wall note" do post api("/projects/#{project.id}/notes", user), body: 'hi!' |