module Gitlab::Client::Notes

def create_issue_note(project, issue, body)

Returns:
  • (Gitlab::ObjectifiedHash) - Information about created note.

Parameters:
  • body (String) -- The body of a note.
  • issue (Integer) -- The ID of an issue.
  • project (Integer, String) -- The ID or name of a project.
def create_issue_note(project, issue, body)
  post("/projects/#{url_encode project}/issues/#{issue}/notes", body: { body: body })
end