blob: 3d0bc718c8edba1a3f482ea4693327af0a5a4745 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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
|