I have a data structure that is basically a tree using :wesome nested set:
class category
acts_as_nested_set
What I want to achieve are routes like
/categories/1/children/
/categories/1/children/new
I know I could fake it by making a separate controller, but it seems a bit non-DRY. Are there any better ways to do this?