This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-02-24 03:57:29 -08:00
|
|
|
class UnfollowService < BaseService
|
|
|
|
# Unfollow and notify the remote user
|
|
|
|
# @param [Account] source_account Where to unfollow from
|
|
|
|
# @param [Account] target_account Which to unfollow
|
|
|
|
def call(source_account, target_account)
|
|
|
|
follow = source_account.unfollow!(target_account)
|
2016-03-26 05:42:10 -07:00
|
|
|
NotificationWorker.perform_async(follow.stream_entry.id, target_account.id) unless target_account.local?
|
2016-02-24 03:57:29 -08:00
|
|
|
end
|
|
|
|
end
|