所有具有 declarative_authorization 的权限

发布于 2024-09-02 07:41:15 字数 244 浏览 5 评论 0原文

我有一个使用 Restful 身份验证和声明性授权的 Rails 应用程序。我有一些管理员角色。

是否有任何方法可以自动授予该角色所有权限,而不是对授权规则中的每个控制器进行硬编码?比如:

role :admin do 
  has_permission_on :everything, :to => :manage
end

或者一种更丑陋的内省方法,也许?

提前致谢

I have a Rails application using Restful authentication and declarative authorization. I have some roles with an admin.

Is there any method to have automatically granted all permissions to this role, instead of hardcode every controller in the authorization_rules? Something like:

role :admin do 
  has_permission_on :everything, :to => :manage
end

Or a uglier approach with introspection, maybe?

Thanks in advance

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

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

发布评论

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

评论(1

决绝 2024-09-09 07:41:15

如果您使用最新的代码,您可以使用它(最新的 gem (0.4.1) 仍然没有):

role :admin do
  has_omnipotence
end

这样 admin 角色将拥有所有模型的所有权限。

请参阅提交: 4ecb402f

You can use this if you use the latest code (the latest gem (0.4.1) still doesn't have it):

role :admin do
  has_omnipotence
end

With that the admin role would have all permissions on all models.

See the commit: 4ecb402f

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