0
0
Fork 0

Add follow selected followers button (#15148)

* Add follow selected followers button

* Fix unused variable

* Fix i18n normalize
This commit is contained in:
Takeshi Umeda 2020-11-13 00:58:00 +09:00 committed by GitHub
parent 4790a126be
commit 2b1a6e734f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 1 deletions

View file

@ -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)