Commit 9a4974b7 authored by Nihad Abbasov's avatar Nihad Abbasov

correct example

parent 01eab583
...@@ -27,7 +27,8 @@ module Gitlab ...@@ -27,7 +27,8 @@ module Gitlab
# id (required) - The ID or code name of a project # id (required) - The ID or code name of a project
# noteable_id (required) - The ID of an issue or snippet # noteable_id (required) - The ID of an issue or snippet
# Example Request: # 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 get ":id/#{noteables_str}/:#{noteable_id_str}/notes" do
@noteable = user_project.send(:"#{noteables_str}").find(params[:"#{noteable_id_str}"]) @noteable = user_project.send(:"#{noteables_str}").find(params[:"#{noteable_id_str}"])
present paginate(@noteable.notes), with: Entities::Note present paginate(@noteable.notes), with: Entities::Note
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment