2039c8280d
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
18 lines
413 B
Ruby
18 lines
413 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ReactiveCachingWorker
|
|
include ApplicationWorker
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
def perform(class_name, id, *args)
|
|
klass = begin
|
|
Kernel.const_get(class_name)
|
|
rescue NameError
|
|
nil
|
|
end
|
|
return unless klass
|
|
|
|
klass.find_by(id: id).try(:exclusively_update_reactive_cache!, *args)
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
end
|