开发者

skip_before_filter based on 'request'

I would like to invoke a skip_before_filter based 开发者_如何学Pythonon the request object.

pseudo code:

skip_before_filter :authorize_user, :if => lambda { |controller| controller.request.ip == '127.0.0.1'

Is this possible, it seems you only get :only/:except with skip_filter's.


This should work

skip_before_filter :authorize_user, :if => Proc.new {|c| c.request.remote_ip == '127.0.0.1'}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜