Two or more parameters in RESTful route
Regardless of whether this is RESTful, to add multiple parameters to a normally RESTful route use the following
Results in
See this Google Rails Group thread from Jeremy Kemper.
myresource_path(:id => myId, :extra_param => extraId, :extra_param2 => blah)
Results in
myresource/myId?extra_param=extraId&extra_param2=blah
See this Google Rails Group thread from Jeremy Kemper.