2016-02-22 07:00:20 -08:00
|
|
|
class FollowService
|
|
|
|
def call(source_account, uri)
|
|
|
|
target_account = follow_remote_account_service.(uri)
|
2016-02-22 09:10:30 -08:00
|
|
|
source_account.follow!(target_account) unless target_account.nil?
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def follow_remote_account_service
|
|
|
|
FollowRemoteAccountService.new
|
|
|
|
end
|
|
|
|
end
|