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