Sha256: 7ec19096a4121edaf83e7d50f0004bd4c54381d3498c342c9bfdbce9348af398
Contents?: true
Size: 287 Bytes
Versions: 44
Compression:
Stored size: 287 Bytes
Contents
module Pay class CustomerSyncJob < ApplicationJob def perform(pay_customer_id) Pay::Customer.find(pay_customer_id).update_customer! rescue ActiveRecord::RecordNotFound Rails.logger.info "Couldn't find a Pay::Customer with ID = #{pay_customer_id}" end end end
Version data entries
44 entries across 44 versions & 1 rubygems