2017-02-06 01:51:56 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class MuteService < BaseService
|
|
|
|
def call(account, target_account)
|
|
|
|
return if account.id == target_account.id
|
2017-10-04 00:22:33 +01:00
|
|
|
mute = account.mute!(target_account)
|
|
|
|
BlockWorker.perform_async(account.id, target_account.id)
|
|
|
|
mute
|
2017-02-06 01:51:56 +00:00
|
|
|
end
|
|
|
|
end
|