Rails 3 - Active_admin 和 CanCan 集成
标题非常有解释性。
如何将 active_admin gem 与 cancan 集成? 我需要行政职位。
谢谢
The title is very explanatory.
How can I integrate active_admin gem with cancan?
I need administrative roles.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可能需要遵循此指南
罗比
You may want to follow this guide
Robbie
举个简单的例子,假设有2个角色:normal_user,admin,
如果你只想“admin”访问“/admin”(activeadmin的默认命名空间),而“normal_user”则不能,我建议你看一下hook方法:
for a simple case, assuming there are 2 roles: normal_user , admin,
if you just want to "admin" to access "/admin" (activeadmin's default namespace), while "normal_user" can not, I suggest you take a look a hook method:
以下链接也有助于使用 activeadmin 设置 cancan。
https://github.com/gregbell/active_admin/wiki/How -与康康一起工作
Following link is also helpful to set cancan with activeadmin.
https://github.com/gregbell/active_admin/wiki/How-to-work-with-cancan
现在有一个 gem 可以完成这项工作: https://github.com/11factory/activeadmin-cancan
Nowadays there is a gem that do the work: https://github.com/11factory/activeadmin-cancan