You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
414 B
14 lines
414 B
# frozen_string_literal: true |
|
|
|
class UnpublishAnnouncementWorker |
|
include Sidekiq::Worker |
|
include Redisable |
|
|
|
def perform(announcement_id) |
|
payload = Oj.dump(event: :'announcement.delete', payload: announcement_id.to_s) |
|
|
|
FeedManager.instance.with_active_accounts do |account| |
|
redis.publish("timeline:#{account.id}", payload) if redis.exists?("subscribed:timeline:#{account.id}") |
|
end |
|
end |
|
end
|
|
|