gitlab-org--gitlab-foss/app/workers/pages_domain_verification_w...

16 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