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
803 B

  1. # frozen_string_literal: true
  2. class Api::V1::MutesController < ApiController
  3. before_action -> { doorkeeper_authorize! :follow }
  4. before_action :require_user!
  5. respond_to :json
  6. def index
  7. results = Mute.where(account: current_account).paginate_by_max_id(limit_param(DEFAULT_ACCOUNTS_LIMIT), params[:max_id], params[:since_id])
  8. accounts = Account.where(id: results.map(&:target_account_id)).map { |a| [a.id, a] }.to_h
  9. @accounts = results.map { |f| accounts[f.target_account_id] }
  10. set_account_counters_maps(@accounts)
  11. next_path = api_v1_mutes_url(max_id: results.last.id) if results.size == limit_param(DEFAULT_ACCOUNTS_LIMIT)
  12. prev_path = api_v1_mutes_url(since_id: results.first.id) unless results.empty?
  13. set_pagination_headers(next_path, prev_path)
  14. end
  15. end