mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-26 16:03:42 +01:00
13 lines
303 B
Ruby
13 lines
303 B
Ruby
|
class UnfavouriteService < BaseService
|
||
|
def call(account, status)
|
||
|
favourite = Favourite.find_by!(account: account, status: status)
|
||
|
favourite.destroy!
|
||
|
|
||
|
unless status.local?
|
||
|
NotificationWorker.perform_async(favourite.stream_entry.id, status.account_id)
|
||
|
end
|
||
|
|
||
|
favourite
|
||
|
end
|
||
|
end
|