2017-05-31 21:36:24 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-06-07 20:09:25 +02:00
|
|
|
class Api::V1::Accounts::RelationshipsController < Api::BaseController
|
2018-07-05 18:31:35 +02:00
|
|
|
before_action -> { doorkeeper_authorize! :read, :'read:follows' }
|
2017-05-31 21:36:24 +02:00
|
|
|
before_action :require_user!
|
|
|
|
|
|
|
|
def index
|
2023-12-18 17:14:43 +01:00
|
|
|
@accounts = Account.where(id: account_ids).select(:id, :domain)
|
2023-11-23 11:00:09 +01:00
|
|
|
@accounts.merge!(Account.without_suspended) unless truthy_param?(:with_suspended)
|
2017-07-07 04:02:06 +02:00
|
|
|
render json: @accounts, each_serializer: REST::RelationshipSerializer, relationships: relationships
|
2017-05-31 21:36:24 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-07-07 04:02:06 +02:00
|
|
|
def relationships
|
|
|
|
AccountRelationshipsPresenter.new(@accounts, current_user.account_id)
|
|
|
|
end
|
|
|
|
|
2017-05-31 21:36:24 +02:00
|
|
|
def account_ids
|
2018-02-21 23:22:12 +01:00
|
|
|
Array(params[:id]).map(&:to_i)
|
2017-05-31 21:36:24 +02:00
|
|
|
end
|
|
|
|
end
|