about summary refs log tree commit diff
path: root/app/services/mute_service.rb
blob: 9b7cbd81f2632e0ef337eb0dbc21171f1a014ce2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class MuteService < BaseService
  def call(account, target_account, notifications: nil)
    return if account.id == target_account.id
    FeedManager.instance.clear_from_timeline(account, target_account)
    mute = account.mute!(target_account, notifications: notifications)
    BlockWorker.perform_async(account.id, target_account.id)
    mute
  end
end