Rails 3 - Active_admin 和 CanCan 集成

发布于 2024-12-23 11:05:49 字数 78 浏览 0 评论 0原文

标题非常有解释性。

如何将 active_admin gem 与 cancan 集成? 我需要行政职位。

谢谢

The title is very explanatory.

How can I integrate active_admin gem with cancan?
I need administrative roles.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

沫雨熙 2024-12-30 11:05:49

您可能需要遵循此指南

罗比

You may want to follow this guide

Robbie

上课铃就是安魂曲 2024-12-30 11:05:49

举个简单的例子,假设有2个角色:normal_user,admin,

如果你只想“admin”访问“/admin”(activeadmin的默认命名空间),而“normal_user”则不能,我建议你看一下hook方法:

# config/initializers/active_admin.rb
config.before_filter :check_user_role

# define this method in applicaton_controller.rb
def check_user_role
  redirect_to root_path unless current_user.role == "admin"
end

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:

# config/initializers/active_admin.rb
config.before_filter :check_user_role

# define this method in applicaton_controller.rb
def check_user_role
  redirect_to root_path unless current_user.role == "admin"
end
花海 2024-12-30 11:05:49

以下链接也有助于使用 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

疑心病 2024-12-30 11:05:49

现在有一个 gem 可以完成这项工作: https://github.com/11factory/activeadmin-cancan

Nowadays there is a gem that do the work: https://github.com/11factory/activeadmin-cancan

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文