gitlab-org--gitlab-foss/app/services/milestones/update_service.rb

25 lines
591 B
Ruby

# frozen_string_literal: true
module Milestones
class UpdateService < Milestones::BaseService
def execute(milestone)
state = params[:state_event]
case state
when 'activate'
Milestones::ReopenService.new(parent, current_user, {}).execute(milestone)
when 'close'
Milestones::CloseService.new(parent, current_user, {}).execute(milestone)
end
if params.present?
milestone.update(params.except(:state_event))
end
milestone
end
end
end
Milestones::UpdateService.prepend_mod_with('Milestones::UpdateService')