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'}
精彩评论