首页 > 解决方案 > 红色 Rails 屏幕而不是闪烁消息:RailsAdmin::MainController#dashboard 中的 CanCan::AccessDenied

问题描述

我使用设计、CanCanCan 和 rails_admin。有了可访问性,一切都很好,但我没有收到一条消息并重定向到 root_path 并得到下面的屏幕。有什么想法,提示我如何获得闪存消息而不是这个?其他闪烁消息,警报和通知均显示 OK。非常感谢。 Rails 服务器红色错误屏幕

我的应用程序控制器是:

class ApplicationController < ActionController::Base
protect_from_forgery with: :exception
before_action :authenticate_user!

def after_sign_in_path_for(resource)
  stored_location_for(resource) || welcome_path_url
end

rescue_from CanCan::AccessDenied do |exception|
  respond_to do |format|
    format.json { head :forbidden, content_type: 'text/html' }
    format.html { redirect_to main_app.root_url, notice: exception.message }
    format.js   { head :forbidden, content_type: 'text/html' }
  end
end
end

rails_admin.rb

RailsAdmin.config do |config|

### Popular gems integration

## == Devise ==
config.authenticate_with do
  warden.authenticate! scope: :user
end
config.current_user_method(&:current_user)

## == CancanCan ==
# config.authorize_with :cancancan
config.authorize_with do
  redirect_to main_app.root_path unless current_user.superuser ==true
end
<....>
end

能力.rb

class Ability
  include CanCan::Ability

  def initialize(user)
    # Define abilities for the passed in user here. For example:
    #
    user ||= User.new # guest user (not logged in)
    if user.superuser?
      can :manage, :all
      cannot :access, :rails_admin
      cannot :manage, :dashboard
    end
    if user.office?
      cannot :access, :rails_admin
      cannot :manage, :dashboard
      can :read, :all
    end
  end
end

编辑:工作答案已标记。我也应该像这样定义状态变量:

  def status
    @user_role ||= User.new(read_attribute(:user_role))
  end

在我的User模型中。

标签: ruby-on-railscancancan

解决方案


它似乎RailsAdmin::MainController不是从您在应用程序上定义的 ApplicationController 派生来捕获其子类上引发的异常的。

您需要显式添加配置以使用另一个父控制器,如下所示。请在此处找到相关的 gem 文档:

 # in config/initializers/rails_admin.rb

config.parent_controller = 'ApplicationController'

这个堆栈溢出答案也可能对您有所帮助。


推荐阅读