mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-25 06:13:43 +01:00
12 lines
278 B
Ruby
12 lines
278 B
Ruby
class FollowService
|
|
def call(source_account, uri)
|
|
target_account = follow_remote_account_service.(uri)
|
|
source_account.follow!(target_account) unless target_account.nil?
|
|
end
|
|
|
|
private
|
|
|
|
def follow_remote_account_service
|
|
FollowRemoteAccountService.new
|
|
end
|
|
end
|