mastodon/app/services/unfollow_service.rb

15 lines
574 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-02-24 12:57:29 +01:00
class UnfollowService < BaseService
2017-02-11 02:12:05 +01:00
include StreamEntryRenderer
2016-02-24 12:57:29 +01:00
# 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)
2017-02-11 02:12:05 +01:00
NotificationWorker.perform_async(stream_entry_to_xml(follow.stream_entry), source_account.id, target_account.id) unless target_account.local?
UnmergeWorker.perform_async(target_account.id, source_account.id)
2016-02-24 12:57:29 +01:00
end
end