summaryrefslogtreecommitdiffstats
path: root/app/controllers/admin/reports_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/admin/reports_controller.rb')
-rw-r--r--app/controllers/admin/reports_controller.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/controllers/admin/reports_controller.rb b/app/controllers/admin/reports_controller.rb
index 2264677395b..745757ee82e 100644
--- a/app/controllers/admin/reports_controller.rb
+++ b/app/controllers/admin/reports_controller.rb
@@ -5,14 +5,17 @@ module Admin
before_action :set_report, except: [:index]
def index
+ authorize :report, :index?
@reports = filtered_reports.page(params[:page])
end
def show
+ authorize @report, :show?
@form = Form::StatusBatch.new
end
def update
+ authorize @report, :update?
process_report
redirect_to admin_report_path(@report)
end