about summary refs log tree commit diff
path: root/app/workers/remove_featured_tag_worker.rb
blob: 065ec79d816cb5c13df2932576742573e57f5a13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class RemoveFeaturedTagWorker
  include Sidekiq::Worker

  def perform(account_id, featured_tag_id)
    RemoveFeaturedTagService.new.call(Account.find(account_id), FeaturedTag.find(featured_tag_id))
  rescue ActiveRecord::RecordNotFound
    true
  end
end