18 lines
		
	
	
		
			536 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			536 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| class UnmuteService < BaseService
 | |
|   def call(account, target_account)
 | |
|     return unless account.muting?(target_account)
 | |
| 
 | |
|     account.unmute!(target_account)
 | |
| 
 | |
|     if account.following?(target_account)
 | |
|       MergeWorker.perform_async(target_account.id, account.id, 'home')
 | |
| 
 | |
|       MergeWorker.push_bulk(List.where(account: account).joins(:list_accounts).where(list_accounts: { account_id: target_account.id }).pluck(:id)) do |list_id|
 | |
|         [target_account.id, list_id, 'list']
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 |