28

How can I set default parameter value in routing in Rails 3. For example I have this route

match ':slug/:id/:direction' => 'quiz#show', :as => :quiz_details, :direction => "next"

and I want to default the value of direction to next.

Simone Carletti
  • 173,507
  • 49
  • 363
  • 364
Zahid
  • 1,822
  • 4
  • 18
  • 26

1 Answers1

42
match ':slug/:id/:direction' => 'quiz#show', :as => :quiz_details, :defaults => { :direction => "next" }

More details in the official Rails guides.

Simone Carletti
  • 173,507
  • 49
  • 363
  • 364