This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-02-06 02:51:56 +01: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 18:49:32 +01:00
|
|
|
|
|
|
|
MergeWorker.perform_async(target_account.id, account.id) if account.following?(target_account)
|
2017-02-06 02:51:56 +01:00
|
|
|
end
|
|
|
|
end
|