i have nested resources to configurate, but i don't know wich logical
name using for models, examples:
####################################
  map.resources :categories do |categories|
    categories.resources :categoryphotos
    categories.resources :subcategories do |subcategories|
      subcategories.resources :subcategoryphotos
    end
  end
##################
or
##################
  map.resources :cats do |cats|
    cats.resources :photocats
    cats.resources :subcats do | subcats |
      subcats.resources :photosubcats
    end
  end
##################
or
##################
  map.resources :cats do |cats|
    cats.resources :photoCats
    cats.resources :subCats do | subCats |
      subCats.resources :photoSubCats
    end
  end
####################################


What is the best solution for obtain a code slim, logical and simple?
name of child elements is writing after o befor the name of parent?
-- 
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to