Question

I need to set up a before_filter in my ApplicationController that redirects a user if they have not yet agreed to a new terms of service. However, I want to restrict the filter to only run based on the type of request.

I'd like to write something like this:

class ApplicationController

before_filter :filter, :only => {:method => :get}

Is something like this possible?

Was it helpful?

Solution

before_filter :do_if_get

private

  def do_if_get
    return unless request.get?

    # your GET only stuff here.
  end

Or more simply

before_filter :get_filter, if: Proc.new {|c| request.get? }

private

  def get_filter
    # your GET only stuff here.
  end

OTHER TIPS

Compliments to deefours answer, this also work with Sinatra::Request

before do
  something if request.get?
end
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top