about summary refs log tree commit diff
path: root/app/models/form/account_batch.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2020-11-12 22:57:57 +0100
committerGitHub <noreply@github.com>2020-11-12 22:57:57 +0100
commit3b6e27978d5d8851845c5c15bbe8162b998f59d3 (patch)
treea543d3e1de1f4f87607e7bd99630433dc0160e59 /app/models/form/account_batch.rb
parent67125534bc0fd48a45d6cb17a5c78712d8e87150 (diff)
parent3f09d4ca034bc51b66b86bae7a10a41f02a4964f (diff)
Merge pull request #1457 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/models/form/account_batch.rb')
-rw-r--r--app/models/form/account_batch.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/models/form/account_batch.rb b/app/models/form/account_batch.rb
index 7b9e40f68..882770d7c 100644
--- a/app/models/form/account_batch.rb
+++ b/app/models/form/account_batch.rb
@@ -9,6 +9,8 @@ class Form::AccountBatch
 
   def save
     case action
+    when 'follow'
+      follow!
     when 'unfollow'
       unfollow!
     when 'remove_from_followers'
@@ -24,6 +26,12 @@ class Form::AccountBatch
 
   private
 
+  def follow!
+    accounts.find_each do |target_account|
+      FollowService.new.call(current_account, target_account)
+    end
+  end
+
   def unfollow!
     accounts.find_each do |target_account|
       UnfollowService.new.call(current_account, target_account)