2039c8280d
This whitelists all existing offenses for the various CodeReuse cops, of which most are triggered by the CodeReuse/ActiveRecord cop.
15 lines
342 B
Ruby
15 lines
342 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PagesDomainVerificationWorker
|
|
include ApplicationWorker
|
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
|
def perform(domain_id)
|
|
domain = PagesDomain.find_by(id: domain_id)
|
|
|
|
return unless domain
|
|
|
|
VerifyPagesDomainService.new(domain).execute
|
|
end
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
|
end
|