b9d74d4076
Change `all_day` to be a visual client-side cue only Publish immediately if `scheduled_at` is in the past Add `published_at` and `updated_at` to announcements JSON
15 lines
413 B
Ruby
15 lines
413 B
Ruby
# 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
|