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