This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
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
|
2017-05-31 21:36:24 +02:00
|
|
|
before_action -> { doorkeeper_authorize! :read }
|
|
|
|
before_action :require_user!
|
|
|
|
|
|
|
|
respond_to :json
|
|
|
|
|
|
|
|
def index
|
|
|
|
@accounts = Account.where(id: account_ids).select('id')
|
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
|
|
|
|
@_account_ids ||= Array(params[:id]).map(&:to_i)
|
|
|
|
end
|
|
|
|
end
|