|
|
|
@ -5,11 +5,8 @@ class Api::V1::Accounts::RelationshipsController < Api::BaseController
|
|
|
|
|
before_action :require_user!
|
|
|
|
|
|
|
|
|
|
def index
|
|
|
|
|
scope = Account.where(id: account_ids).select('id')
|
|
|
|
|
scope.merge!(Account.without_suspended) unless truthy_param?(:with_suspended)
|
|
|
|
|
# .where doesn't guarantee that our results are in the same order
|
|
|
|
|
# we requested them, so return the "right" order to the requestor.
|
|
|
|
|
@accounts = scope.index_by(&:id).values_at(*account_ids).compact
|
|
|
|
|
@accounts = Account.where(id: account_ids).select('id')
|
|
|
|
|
@accounts.merge!(Account.without_suspended) unless truthy_param?(:with_suspended)
|
|
|
|
|
render json: @accounts, each_serializer: REST::RelationshipSerializer, relationships: relationships
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|