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-04 20:16:53 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class PushUpdateWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
|
|
|
def perform(timeline, account_id, status_id)
|
|
|
|
account = Account.find(account_id)
|
|
|
|
status = Status.find(status_id)
|
|
|
|
message = inline_render(account, 'api/v1/statuses/show', status)
|
2017-04-04 20:48:22 -07:00
|
|
|
|
2017-04-04 20:36:03 -07:00
|
|
|
ActionCable.server.broadcast("timeline:#{account_id}", type: 'update', timeline: timeline, message: message)
|
2017-04-04 20:16:53 -07:00
|
|
|
end
|
|
|
|
end
|