Given a one to many relationship between a user managed with devise and a "thing", my goal is to draw restful routes like:
http://host/username
http://host/username/things
http://host/username/things/1
...
I am aware of nested resources in Rails routes, but I can't figure out how to apply it to a generic User model created and managed via devise.