mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2025-01-11 00:31:34 +01:00
16 lines
395 B
Ruby
16 lines
395 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UnfavouriteService < BaseService
|
|
include StreamEntryRenderer
|
|
|
|
def call(account, status)
|
|
favourite = Favourite.find_by!(account: account, status: status)
|
|
favourite.destroy!
|
|
|
|
unless status.local?
|
|
NotificationWorker.perform_async(stream_entry_to_xml(favourite.stream_entry), account.id, status.account_id)
|
|
end
|
|
|
|
favourite
|
|
end
|
|
end
|