cancan 按角色过滤记录
这里有一个非常简单的问题,但我没有答案...;-)
我只需要按角色浏览我的用户数据库。我不知道如何将我正在寻找的角色与
我尝试过的 cancan 创建的掩码相匹配:
@users= User.role?('manager')
但当然它不会工作。
你有答案吗?谢谢!!
very simple question here but I don't have the answer... ;-)
I just need to browse my user db by roles. I don't know how to match the role I'm looking for with the mask created by cancan
I tried:
@users= User.role?('manager')
but of course it doesn't work.
Do you have the answer? Thanks!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的,我明白了。 Ryan B. 在他出色的 Railscasts 中给出了答案:
使用此范围:
并简单地以这种方式应用它:
OK, I got it. The answer was given by Ryan B. in his excellent railscasts:
Use this scope:
and simply apply it this way: