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
563 B

class FavouriteService < BaseService
# Favourite a status and notify remote user
# @param [Account] account
# @param [Status] status
# @return [Favourite]
def call(account, status)
favourite = Favourite.create!(account: account, status: status)
account.ping!(account_url(account, format: 'atom'), [Rails.configuration.x.hub_url])
if status.local?
NotificationMailer.favourite(status, account).deliver_later
else
NotificationWorker.perform_async(favourite.stream_entry.id, status.account_id)
end
favourite
end
end