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