aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/relationships_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/relationships_controller.rb')
-rw-r--r--app/controllers/relationships_controller.rb9
1 files changed, 8 insertions, 1 deletions
diff --git a/app/controllers/relationships_controller.rb b/app/controllers/relationships_controller.rb
index 0835758f2..96cce55e9 100644
--- a/app/controllers/relationships_controller.rb
+++ b/app/controllers/relationships_controller.rb
@@ -5,6 +5,7 @@ class RelationshipsController < ApplicationController
before_action :authenticate_user!
before_action :set_accounts, only: :show
+ before_action :set_relationships, only: :show
before_action :set_body_classes
helper_method :following_relationship?, :followed_by_relationship?, :mutual_relationship?
@@ -28,6 +29,10 @@ class RelationshipsController < ApplicationController
@accounts = RelationshipFilter.new(current_account, filter_params).results.page(params[:page]).per(40)
end
+ def set_relationships
+ @relationships = AccountRelationshipsPresenter.new(@accounts.pluck(:id), current_user.account_id)
+ end
+
def form_account_batch_params
params.require(:form_account_batch).permit(:action, account_ids: [])
end
@@ -49,7 +54,9 @@ class RelationshipsController < ApplicationController
end
def action_from_button
- if params[:unfollow]
+ if params[:follow]
+ 'follow'
+ elsif params[:unfollow]
'unfollow'
elsif params[:remove_from_followers]
'remove_from_followers'