Tagged Questions

1
vote
0answers
218 views

Context-Dependent Model Defaults in Rails from link_to

What's the standard for applying default values to Rails models from links? Here's the situation: There is a model in Spree called ProductGroup, which is a collections of settings defining how to ...
0
votes
1answer
1k views

Rails RESTful Routes: override params[:id] or params[:model_id] defaults

I'm trying to understand how to change this rule directly on the map.resources: supposing I have a route: map.resource :user, :as => ':user', :shallow => true do |user| user.resources ...