module Gitlab::Client::Epics
def create_epic(group_id, title, options = {})
-
(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