Method: Gitlab::Client::Epics#create_epic
- Defined in:
- lib/gitlab/client/epics.rb
#create_epic(group_id, title, options = {}) ⇒ Gitlab::ObjectifiedHash
Creates a new epic.
44 45 46 47 |
# File 'lib/gitlab/client/epics.rb', line 44 def create_epic(group_id, title, = {}) body = .merge(title: title) post("/groups/#{group_id}/epics", body: body) end |