Picking up Rails 3 for my next web app.
Basically I have a set of nested resources.
Users => Apps => Form
I spent some time earlier using sessions to hold an app_id so I could access that apps forms.
But I then discovered nested routes in Rails 3.... so which one is best? I might have another layer after Forms so it would be nested 3 or 4 times. I ran into this resource while reading rails guides http://weblog.jamisbuck.org/2007/2/5/nesting-resources and am on the fence about how to proceed.
Should I use the nested resources with rails or just start using sessions since I may have a large amount of nested resources?