module Gitlab::Client::Notes

def edit_note(project, id, body)

Returns:
  • (Gitlab::ObjectifiedHash) -

Parameters:
  • body (String) -- The content of a note.
  • id (Integer) -- The ID of a note.
  • project (Integer) -- The ID of a project.
def edit_note(project, id, body)
  put("/projects/#{url_encode project}/notes/#{id}", body: note_content(body))
end