mirror of
https://github.com/mastodon/mastodon.git
synced 2025-09-05 17:31:12 +00:00
18 lines
483 B
Ruby
18 lines
483 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UnmuteService < BaseService
|
|
def call(account, target_account)
|
|
return unless account.muting?(target_account)
|
|
|
|
account.unmute!(target_account)
|
|
|
|
if account.following?(target_account)
|
|
MergeWorker.perform_async(target_account.id, account.id, 'home')
|
|
|
|
MergeWorker.push_bulk(account.owned_lists.with_list_account(target_account).pluck(:id)) do |list_id|
|
|
[target_account.id, list_id, 'list']
|
|
end
|
|
end
|
|
end
|
|
end
|