2017-02-06 10:51:56 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class MuteService < BaseService
|
2017-09-14 08:32:10 +09:00
|
|
|
def call(account, target_account, notifications: nil)
|
2017-02-06 10:51:56 +09:00
|
|
|
return if account.id == target_account.id
|
2017-05-06 23:31:07 +09:00
|
|
|
FeedManager.instance.clear_from_timeline(account, target_account)
|
2017-09-14 08:32:10 +09:00
|
|
|
account.mute!(target_account, notifications: notifications)
|
2017-02-06 10:51:56 +09:00
|
|
|
end
|
|
|
|
end
|