1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/services/unfollow_service.rb

15 lines
574 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-02-24 03:57:29 -08:00
class UnfollowService < BaseService
2017-02-10 17:12:05 -08:00
include StreamEntryRenderer
2016-02-24 03:57:29 -08: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-10 17:12:05 -08: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 03:57:29 -08:00
end
end