logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

synchronize_featured_collection_worker.rb (337B)


  1. # frozen_string_literal: true
  2. class ActivityPub::SynchronizeFeaturedCollectionWorker
  3. include Sidekiq::Worker
  4. sidekiq_options queue: 'pull', unique: :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