|
|
|
@ -32,14 +32,14 @@ class Api::V1::StatusesController < ApiController
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def reblogged_by
|
|
|
|
|
@accounts = Account.includes(statuses: :reblogs)
|
|
|
|
|
.references(statuses: :reblogs)
|
|
|
|
|
.where(statuses: { id: @status.id })
|
|
|
|
|
.merge(@status.reblogs.paginate_by_max_id(limit_param(DEFAULT_ACCOUNTS_LIMIT), params[:max_id], params[:since_id]))
|
|
|
|
|
@accounts = Account.includes(:statuses)
|
|
|
|
|
.references(:statuses)
|
|
|
|
|
.merge(Status.where(reblog_of_id: @status.id)
|
|
|
|
|
.paginate_by_max_id(limit_param(DEFAULT_ACCOUNTS_LIMIT), params[:max_id], params[:since_id]))
|
|
|
|
|
.to_a
|
|
|
|
|
|
|
|
|
|
next_path = reblogged_by_api_v1_status_url(pagination_params(max_id: @accounts.last.statuses.last.reblogs.last.id)) if @accounts.size == limit_param(DEFAULT_ACCOUNTS_LIMIT)
|
|
|
|
|
prev_path = reblogged_by_api_v1_status_url(pagination_params(since_id: @accounts.first.statuses.first.reblogs.first.id)) unless @accounts.empty?
|
|
|
|
|
next_path = reblogged_by_api_v1_status_url(pagination_params(max_id: @accounts.last.statuses.last.id)) if @accounts.size == limit_param(DEFAULT_ACCOUNTS_LIMIT)
|
|
|
|
|
prev_path = reblogged_by_api_v1_status_url(pagination_params(since_id: @accounts.first.statuses.first.id)) unless @accounts.empty?
|
|
|
|
|
|
|
|
|
|
set_pagination_headers(next_path, prev_path)
|
|
|
|
|
|
|
|
|
|