CanCan 是否使用活动管理员用户?
我在 Rails 3 应用程序的前端使用 Devise 和 CanCan 进行授权。我还有 Active Admin 作为后端界面。我正在尝试为后端管理员创建不同的角色。两端都有一个使用不同“用户”模型和登录表单的登录表单。表。问题在于 CanCan 从前端获取当前用户(抓取当前用户对象)并使用它来查看后端中的某人是否具有正确的权限。
那么,如何让 CanCan 正确获取已登录的管理员用户呢?
如果有人需要更多信息,我很乐意提供。
I'm using Devise and CanCan for authorization on the frontend of a Rails 3 app. I also have Active Admin as the interface for the backend. I'm trying to create different roles for admins in the backend. Both ends have a login form that uses different 'user' models & tables. The problem is that CanCan fetches the current user from the frontend (grabbing the current user object) and uses that to see if someone in the backend has the correct permissions.
So, how I can have CanCan correctly grab the admin user that's logged in?
If anyone needs more information, I'll be glad to supply it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我之前没有使用过
ActiveAdmin
,但之前在几个项目中使用过Devise 和 Cancan
。查看Active Admin 文档后,
设置控制器应调用的方法来对当前用户进行身份验证:
设置要在视图中调用的方法以访问当前管理员用户
您可以通过查看
:current_admin_user
而不是:current_user
来覆盖应用程序中的 Cancan 行为。请参阅此处 Cancan 更改默认值。
如果您仍然无法得到它,请发布您的问题,您被卡住的地方。
I have not used
ActiveAdmin
before, but have usedDevise and Cancan
in a couple of projects before.Having looked at Active Admin Documentation,
Set the method that controllers should call to authenticate the current user with:
Set the method to call within the view to access the current admin user
You can override Cancan behaviour in your application, by looking at
:current_admin_user
instead of:current_user
.Refer here Cancan changing defaults.
If you still can't get it, post your problems, where you are stuck.