module Gitlab::Client::GroupMilestones

def edit_group_milestone(id, milestone_id, options={})

Returns:
  • (Gitlab::ObjectifiedHash) - Information about updated milestone.

Options Hash: (**options)
  • :state_event (String) -- The state of a milestone ('close' or 'activate').
  • :due_date (String) -- The due date of a milestone.
  • :description (String) -- The description of a milestone.
  • :title (String) -- The title of a milestone.

Parameters:
  • options (Hash) -- A customizable set of options.
  • milestone_id (Integer) -- The ID of a milestone.
  • id (Integer, String) -- The ID or name of a group.
def edit_group_milestone(id, milestone_id, options={})
  put("/groups/#{url_encode id}/milestones/#{milestone_id}", body: options)
end