This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-04-05 12:41:50 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class RemoteProfileUpdateWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
|
|
|
sidekiq_options queue: 'pull'
|
|
|
|
|
2019-07-06 14:26:16 -07:00
|
|
|
def perform(account_id, body, resubscribe); end
|
2017-04-05 12:41:50 -07:00
|
|
|
end
|