The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

15 lines
413 B

  1. # frozen_string_literal: true
  2. class UnpublishAnnouncementWorker
  3. include Sidekiq::Worker
  4. include Redisable
  5. def perform(announcement_id)
  6. payload = Oj.dump(event: :'announcement.delete', payload: announcement_id.to_s)
  7. FeedManager.instance.with_active_accounts do |account|
  8. redis.publish("timeline:#{account.id}", payload) if redis.exists("subscribed:timeline:#{account.id}")
  9. end
  10. end
  11. end