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.
2017-02-05 17:51:56 -08: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 09:49:32 -08:00
|
|
|
|
|
|
|
MergeWorker.perform_async(target_account.id, account.id) if account.following?(target_account)
|
2017-02-05 17:51:56 -08:00
|
|
|
end
|
|
|
|
end
|