1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-24 15:16:33 +09:00
YuruToot/app/services/unmute_service.rb

12 lines
298 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class UnmuteService < BaseService
def call(account, target_account)
return unless account.muting?(target_account)
account.unmute!(target_account)
2017-03-03 02:49:32 +09:00
MergeWorker.perform_async(target_account.id, account.id) if account.following?(target_account)
end
end