module Gitlab::Client::Epics

def create_epic(group_id, title, options = {})

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

Parameters:
  • options (Hash) -- A customizable set of options.
  • title (String) --
  • group_id (Integer) -- The ID of a group.
def create_epic(group_id, title, options = {})
  body = options.merge(title: title)
  post("/groups/#{group_id}/epics", body: body)
end