blob: 24fb940129d3ce2733794f04032deb87015ee5e8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: true
class SalmonWorker
include Sidekiq::Worker
def perform(account_id, body)
ProcessInteractionService.new.call(body, Account.find(account_id))
rescue ActiveRecord::RecordNotFound
true
end
end
|