1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-28 06:48:45 +09:00
YuruToot/app/services/follow_service.rb

13 lines
278 B
Ruby
Raw Normal View History

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