6

我在为我的应用程序设置重定向时遇到问题。用户应该转到他们的个人资料(用户/节目),管理员应该转到管理仪表板。我该如何设置?

当前收到以下错误:

 NameError in ActiveAdmin::Devise::SessionsController#create

    undefined local variable or method `admin' for #<ActiveAdmin::Devise::SessionsController:0x007febe12667e8>

应用控制器

def after_sign_in_path_for(resource_or_scope)
   if admin
   redirect_to admin_dashboard_path
  else
   @user
  end
 end
end
4

2 回答 2

15

您没有admin要访问的变量,您需要检查给定的参数是什么。

def after_sign_in_path_for(resource)
  stored_location_for(resource) ||
    if resource.is_a?(Admin)
      admin_dashboard_path
    else
      user_path(resource)
    end
end

您也不应该此方法中重定向,它应该只返回设计可以使用的路径。

于 2012-07-08T17:58:21.087 回答
0
if resource.class == User
  root_path
elsif resource.class == AdminUser
  admin_root_path
else
end
于 2017-07-27T23:14:51.983 回答