has_permission_on 具有声明性授权,非属性条件
如果我的应用程序中设置了会话变量,我想授予特定操作授权。我不知道该怎么做。比如:
has_permission_on :admin, :to => :action do
true if session[:key]
end
我不明白如何完成这个基本任务。任何帮助表示赞赏。
I want to give authorization to a specific action if a session variable is set in my app. I can't figure out how to do this. Something like:
has_permission_on :admin, :to => :action do
true if session[:key]
end
I don't understand how to accomplish this basic task. Any help appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想在函数上使用 before_filter 例如
You want to use a before_filter on the function e.g.