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