about summary refs log blame commit diff
path: root/app/services/mute_service.rb
blob: 1a3f4981fdef53f3ba71afa522e408037a8c69ed (plain) (tree)
1
2
3
4
5
6
7
8

                               
                                                                            
                                             
 
                                                                                                      
 

                                                              
                                                             
       
 
        
     
   
# 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