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

class MuteService < BaseService
  def call(account, target_account, notifications: nil, timelines_only: nil)
    return if account.id == target_account.id

    mute = account.mute!(target_account, notifications: notifications, timelines_only: timelines_only)

    if mute.hide_notifications?
      BlockWorker.perform_async(account.id, target_account.id)
    else
      MuteWorker.perform_async(account.id, target_account.id)
    end

    mute
  end
end