fedibird-fe/app/services/unmute_service.rb
2021-08-12 07:10:15 +09:00

12 lines
307 B
Ruby

# frozen_string_literal: true
class UnmuteService < BaseService
def call(account, target_account)
return unless account.muting?(target_account)
account.unmute!(target_account)
MergeWorker.perform_async(target_account.id, account.id) if account.delivery_following?(target_account)
end
end