about summary refs log tree commit diff
path: root/app/workers/notification_worker.rb
blob: 1c0f001cf20fb9dedc084ce8e7272859f2352025 (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class NotificationWorker
  include Sidekiq::Worker

  sidekiq_options queue: 'push', retry: 5

  def perform(xml, source_account_id, target_account_id); end
end