Added global_check_permission

This commit is contained in:
2017-03-23 05:45:45 -04:00
committed by GitHub
parent bbd03cc337
commit 68be20459b

View File

@@ -31,6 +31,13 @@ module AuthHelper
end
end
def global_check_permission(permission)
if !global_allowed_to?(permission)
render :file => "public/401.html.erb", :status => :unauthorized, :layout =>true
end
end
def global_allowed_to?( action)
return false if User.current.nil?