Gab-Social/app/services/unmute_service.rb
mgabdev aac506bd4e Removed all usage of unused MergeWorker
• Removed:
- all usage of unused MergeWorker
2021-01-09 14:33:01 -05:00

10 lines
198 B
Ruby

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