Add support for muting notifications in MuteService

This commit is contained in:
Surinna Curtis 2017-07-27 23:28:57 -05:00 committed by aschmitz
parent 0ccfbe5747
commit 9855529a10
1 changed files with 7 additions and 2 deletions

View File

@ -1,9 +1,14 @@
# frozen_string_literal: true
class MuteService < BaseService
def call(account, target_account)
def call(account, target_account, notifications: nil)
return if account.id == target_account.id
mute = account.mute!(target_account)
FeedManager.instance.clear_from_timeline(account, target_account)
# This unwieldy approach avoids duplicating the default value here
# and in mute!.
opts = {}
opts[:notifications] = notifications unless notifications.nil?
mute = account.mute!(target_account, **opts)
BlockWorker.perform_async(account.id, target_account.id)
mute
end