You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
251 B
13 lines
251 B
9 years ago
|
class FollowService
|
||
|
def call(source_account, uri)
|
||
|
target_account = follow_remote_account_service.(uri)
|
||
|
source_account.follow!(target_account)
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def follow_remote_account_service
|
||
|
FollowRemoteAccountService.new
|
||
|
end
|
||
|
end
|