2017-02-06 02:51:56 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class MuteService < BaseService
|
2017-07-28 06:28:57 +02:00
|
|
|
def call(account, target_account, notifications: nil)
|
2017-02-06 02:51:56 +01:00
|
|
|
return if account.id == target_account.id
|
2017-05-06 16:31:07 +02:00
|
|
|
FeedManager.instance.clear_from_timeline(account, target_account)
|
2017-07-28 06:28:57 +02:00
|
|
|
# This unwieldy approach avoids duplicating the default value here
|
|
|
|
# and in mute!.
|
|
|
|
opts = {}
|
|
|
|
opts[:notifications] = notifications unless notifications.nil?
|
|
|
|
account.mute!(target_account, **opts)
|
2017-02-06 02:51:56 +01:00
|
|
|
end
|
|
|
|
end
|