forked from treehouse/mastodon
10 lines
198 B
Ruby
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
|