about summary refs log tree commit diff
path: root/app/workers/activitypub/synchronize_featured_tags_collection_worker.rb
blob: 14af4f725cdd62cd6d6976e3c4330f736810a185 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class ActivityPub::SynchronizeFeaturedTagsCollectionWorker
  include Sidekiq::Worker

  sidekiq_options queue: 'pull', lock: :until_executed

  def perform(account_id, url)
    ActivityPub::FetchFeaturedTagsCollectionService.new.call(Account.find(account_id), url)
  rescue ActiveRecord::RecordNotFound
    true
  end
end