From 0b04e2d4ef5ce1ab82693c5ce7a82c2fd4ca15f5 Mon Sep 17 00:00:00 2001 From: Yan Date: Fri, 9 Jun 2017 13:35:41 +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