2016-11-16 02:56:29 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-05 22:50:21 +11:00
|
|
|
class HubPingWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
include RoutingHelper
|
|
|
|
|
|
|
|
def perform(account_id)
|
|
|
|
account = Account.find(account_id)
|
|
|
|
account.ping!(account_url(account, format: 'atom'), [Rails.configuration.x.hub_url])
|
|
|
|
end
|
|
|
|
end
|