add action base and update base ctrls

This commit is contained in:
Yan
2018-02-26 17:42:54 +06:30
parent 07e208a457
commit 13b7b1f800
9 changed files with 100 additions and 23 deletions

View File

@@ -1,10 +1,11 @@
class BaseReportController < ApplicationController
layout "application"
class BaseReportController < ActionController::Base
include LoginVerification
layout "application"
#before_action :check_installation
protect_from_forgery with: :exception
#before_action :check_installation
protect_from_forgery with: :exception
rescue_from CanCan::AccessDenied do |exception|
rescue_from CanCan::AccessDenied do |exception|
flash[:warning] = exception.message
redirect_to root_path
end