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