mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-05 06:26:21 +00:00
13 lines
251 B
Ruby
13 lines
251 B
Ruby
|
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
|