Method: Gitlab::Client::Notes#create_note
- Defined in:
- lib/gitlab/client/notes.rb
#create_note(project, body) ⇒ Gitlab::ObjectifiedHash
Creates a new wall note.
92 93 94 |
# File 'lib/gitlab/client/notes.rb', line 92 def create_note(project, body) post("/projects/#{project}/notes", body: { body: body }) end |