From 24ba7c9762a583f3e1105162f4a43a22a17a4627 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Thu, 16 Feb 2017 02:28:10 +0100 Subject: Adding index overview for reports in admin UI --- app/controllers/admin/reports_controller.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 app/controllers/admin/reports_controller.rb (limited to 'app/controllers') diff --git a/app/controllers/admin/reports_controller.rb b/app/controllers/admin/reports_controller.rb new file mode 100644 index 000000000..3eb5ab517 --- /dev/null +++ b/app/controllers/admin/reports_controller.rb @@ -0,0 +1,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 -- cgit