mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-25 05:13:40 +01:00
7 lines
186 B
Ruby
7 lines
186 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UnblockService < BaseService
|
|
def call(account, target_account)
|
|
account.unblock!(target_account) if account.blocking?(target_account)
|
|
end
|
|
end
|