2039c8280d
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
24 lines
609 B
Ruby
24 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
|