2017-02-05 20:51:56 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class UnmuteService < BaseService
|
|
|
|
def call(account, target_account)
|
|
|
|
return unless account.muting?(target_account)
|
|
|
|
|
|
|
|
account.unmute!(target_account)
|
2017-03-02 12:49:32 -05:00
|
|
|
|
|
|
|
MergeWorker.perform_async(target_account.id, account.id) if account.following?(target_account)
|
2017-02-05 20:51:56 -05:00
|
|
|
end
|
|
|
|
end
|