diff options
author | Takeshi Umeda <noel.yoshiba@gmail.com> | 2020-11-13 00:58:00 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-12 16:58:00 +0100 |
commit | 2b1a6e734ff42c17fb971cf909509b6b2ad84879 (patch) | |
tree | d94c398b4655d790d3d63faf277a1a0ef5e27c0e /app/models | |
parent | 4790a126bebddd83cbaf1a8436611536dcc417a0 (diff) |
Add follow selected followers button (#15148)
* Add follow selected followers button * Fix unused variable * Fix i18n normalize
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/form/account_batch.rb | 8 |
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) |