debian-mirror-gitlab/app/services/milestones/update_service.rb
2018-12-05 23:21:45 +05:30

25 lines
609 B
Ruby

# 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