From 18a6b7f297a39db6c626e833d4a1988b39f3141b Mon Sep 17 00:00:00 2001 From: Yan Date: Fri, 9 Jun 2017 12:31:05 +0630 Subject: [PATCH] add base report controller --- app/controllers/base_report_controller.rb | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 app/controllers/base_report_controller.rb diff --git a/app/controllers/base_report_controller.rb b/app/controllers/base_report_controller.rb new file mode 100644 index 00000000..77e38f2c --- /dev/null +++ b/app/controllers/base_report_controller.rb @@ -0,0 +1,8 @@ +class BaseReportController < ActionController::Base + include LoginVerification + + #before_action :check_installation + protect_from_forgery with: :exception + + +end