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