You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
466 B

  1. # frozen_string_literal: true
  2. class UnfavouriteService < BaseService
  3. def call(account, status)
  4. favourite = Favourite.find_by!(account: account, status: status)
  5. favourite.destroy!
  6. NotificationWorker.perform_async(build_xml(favourite), account.id, status.account_id) unless status.local?
  7. favourite
  8. end
  9. private
  10. def build_xml(favourite)
  11. OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.unfavourite_salmon(favourite))
  12. end
  13. end