debian-mirror-gitlab/app/workers/pages_domain_verification_worker.rb
2018-12-05 23:21:45 +05:30

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