DEV Community

[Comment from a deleted post]
Collapse
 
rafaltrojanowski profile image
Rafał Trojanowski

Nice post! I prefer a separate controller to avoid conditionals in controller and template, IMHO it's a better way to organize the code.

resources :users, path: 'u' do
    resources :brands, controller: 'users/brands' do
end