before_filter 检查多个角色

发布于 2024-11-07 15:40:52 字数 454 浏览 3 评论 0原文

在 application_controller 中,我有以下方法:

  def authorized_for_roles(*roles)
    roles.each{|role_name| return true if current_user.has_role?(role_name)}
    false
  end

在我的一个控制器中,我

private

  def authorize_administration
    authorized_for_roles :administrator
  end

在 before_filter 中调用authorize_administration。当前收到“未定义的方法角色”错误。有人可以告诉我哪里出了问题吗?current_user 是有效/已定义的,并且可以检查角色。

谢谢

In application_controller I have the following method:

  def authorized_for_roles(*roles)
    roles.each{|role_name| return true if current_user.has_role?(role_name)}
    false
  end

In one of my controllers, I have

private

  def authorize_administration
    authorized_for_roles :administrator
  end

I am calling authorize_administration in my before_filter. Currently getting 'undefined method roles" error. Can someone tell me where I've gone wrong? the current_user is valid/defined, and the role can be checked.

Thanks

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

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

发布评论

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

评论(1

尤怨 2024-11-14 15:40:52

错误真的是在authorized_for_roles def中,还是在用户模型中?您是否为用户定义了 has_many :roles ?

Is the error really in the authorized_for_roles def, or perhaps in the User model? Did you define has_many :roles for User?

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