summaryrefslogtreecommitdiff
path: root/app/workers/pages_domain_verification_worker.rb
blob: 4610b68818952d27573d5852013b6339b5bbd9dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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