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

25 lines
592 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Milestones
class UpdateService < Milestones::BaseService
def execute(milestone)
state = params[:state_event]
case state
when 'activate'
2017-07-07 11:08:49 -04:00
Milestones::ReopenService.new(parent, current_user, {}).execute(milestone)
when 'close'
2017-07-07 11:08:49 -04:00
Milestones::CloseService.new(parent, current_user, {}).execute(milestone)
end
if params.present?
2018-07-02 06:43:06 -04:00
milestone.update(params.except(:state_event))
end
milestone
end
end
end
Milestones::UpdateService.prepend_if_ee('EE::Milestones::UpdateService')