Rails 3 Routing problems

I have an UploadsController and UsersController where Users' has_many :uploads' via polymorphic attachment in uploads.rb.

Now we i navigate to http://localhost:3000/users/1/uploads

That's normal, but you do need to only fetch the uploads for the user in question. (params[:user_id] should be set)

Fred