mirror of
https://github.com/kikobar/mastodon.git
synced 2024-11-18 13:17:35 +00:00
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
|