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

class RemoteProfileUpdateWorker
  include Sidekiq::Worker

  sidekiq_options queue: 'pull'

  def perform(account_id, body, resubscribe); end
end