has_permission_on 具有声明性授权,非属性条件

发布于 2024-11-17 16:00:07 字数 181 浏览 4 评论 0原文

如果我的应用程序中设置了会话变量,我想授予特定操作授权。我不知道该怎么做。比如:

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 技术交流群。

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

发布评论

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

评论(1

深居我梦 2024-11-24 16:00:07

您想在函数上使用 before_filter 例如

before_filter :authorize, :only => :action

private
def authorize
unless session[:key]
flash[:notice] = "Cannot do this"
redirect_to(:controller => "controller", :action => "otheraction")
end

You want to use a before_filter on the function e.g.

before_filter :authorize, :only => :action

private
def authorize
unless session[:key]
flash[:notice] = "Cannot do this"
redirect_to(:controller => "controller", :action => "otheraction")
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文