gitlab-org--gitlab-foss/app/workers/pages_domain_verification_worker.rb

13 lines
255 B
Ruby

# frozen_string_literal: true
class PagesDomainVerificationWorker
include ApplicationWorker
def perform(domain_id)
domain = PagesDomain.find_by(id: domain_id)
return unless domain
VerifyPagesDomainService.new(domain).execute
end
end