blob: 01ab8b37bac3e6284d91962aa206984802c0888b (
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
|
# 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
|