module Gitlab::Client::Notes

def create_epic_note(group, epic, body)

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

Parameters:
  • body (String) -- The body of a note.
  • epic (Integer) -- The ID of an epic.
  • group (Integer, String) -- The ID or name of a group.
def create_epic_note(group, epic, body)
  post("/groups/#{url_encode group}/epics/#{epic}/notes", body: { body: body })
end