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