Made some progress
This commit is contained in:
parent
9c4856bdb1
commit
709c6685a9
61 changed files with 570 additions and 37 deletions
12
app/services/follow_service.rb
Normal file
12
app/services/follow_service.rb
Normal file
|
@ -0,0 +1,12 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue