1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-01-22 07:33:05 -05:00
2017-01-05 03:28:21 +01:00

12 lines
258 B
Ruby

# frozen_string_literal: true
class UnfavouriteWorker
include Sidekiq::Worker
def perform(account_id, status_id)
UnfavouriteService.new.call(Account.find(account_id), Status.find(status_id))
rescue ActiveRecord::RecordNotFound
true
end
end