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