summaryrefslogtreecommitdiff
path: root/app/services/milestones/update_service.rb
blob: c445c816554083dc66e194723f9cf1192d57d759 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true

module Milestones
  class UpdateService < Milestones::BaseService
    # rubocop: disable CodeReuse/ActiveRecord
    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
    # rubocop: enable CodeReuse/ActiveRecord
  end
end

Milestones::UpdateService.prepend_if_ee('EE::Milestones::UpdateService')