You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
763 B

  1. # frozen_string_literal: true
  2. class Api::V1::FavouritesController < ApiController
  3. before_action -> { doorkeeper_authorize! :read }
  4. before_action :require_user!
  5. respond_to :json
  6. def index
  7. results = Favourite.where(account: current_account).paginate_by_max_id(limit_param(DEFAULT_STATUSES_LIMIT), params[:max_id], params[:since_id])
  8. @statuses = cache_collection(Status.where(id: results.map(&:status_id)), Status)
  9. set_maps(@statuses)
  10. # set_counters_maps(@statuses)
  11. next_path = api_v1_favourites_url(max_id: results.last.id) if results.size == limit_param(DEFAULT_STATUSES_LIMIT)
  12. prev_path = api_v1_favourites_url(since_id: results.first.id) unless results.empty?
  13. set_pagination_headers(next_path, prev_path)
  14. end
  15. end