I would like to invoke a skip_before_filter based on 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'}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With