module Gitlab::Client::Notes
def edit_issue_note(project, issue, id, body)
-
(Gitlab::ObjectifiedHash)
-
Parameters:
-
body
(String
) -- The content of a note. -
id
(Integer
) -- The ID of a note. -
issue
(Integer
) -- The ID of an issue. -
project
(Integer
) -- The ID of a project.
def edit_issue_note(project, issue, id, body) put("/projects/#{url_encode project}/issues/#{issue}/notes/#{id}", body: note_content(body)) end