synchronize_featured_collection_worker.rb 335 B

12345678910111213
  1. # frozen_string_literal: true
  2. class ActivityPub::SynchronizeFeaturedCollectionWorker
  3. include Sidekiq::Worker
  4. sidekiq_options queue: 'pull', lock: :until_executed
  5. def perform(account_id)
  6. ActivityPub::FetchFeaturedCollectionService.new.call(Account.find(account_id))
  7. rescue ActiveRecord::RecordNotFound
  8. true
  9. end
  10. end