about summary refs log tree commit diff
path: root/app/controllers/admin/reports_controller.rb
blob: 3eb5ab51717b0c0a3085f0da8584db4fc816101a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class Admin::ReportsController < ApplicationController
  before_action :require_admin!

  layout 'admin'

  def index
    @reports = Report.includes(:account, :target_account).paginate(page: params[:page], per_page: 40)
    @reports = params[:action_taken].present? ? @reports.resolved : @reports.unresolved
  end

  def show
    @report   = Report.find(params[:id])
    @statuses = Status.where(id: @report.status_ids)
  end
end