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.

30 lines
886 B

  1. # frozen_string_literal: true
  2. class Api::V1::ReportsController < ApiController
  3. before_action -> { doorkeeper_authorize! :read }, except: [:create]
  4. before_action -> { doorkeeper_authorize! :write }, only: [:create]
  5. before_action :require_user!
  6. respond_to :json
  7. def index
  8. @reports = Report.where(account: current_account)
  9. end
  10. def create
  11. status_ids = report_params[:status_ids].is_a?(Enumerable) ? report_params[:status_ids] : [report_params[:status_ids]]
  12. @report = Report.create!(account: current_account,
  13. target_account: Account.find(report_params[:account_id]),
  14. status_ids: Status.find(status_ids).pluck(:id),
  15. comment: report_params[:comment])
  16. render :show
  17. end
  18. private
  19. def report_params
  20. params.permit(:account_id, :comment, status_ids: [])
  21. end
  22. end