ruby on rails - Nested resources with devise -


this routes file.

devise_for :users, :path => 'accounts'  resources :users   resources :articles end 

how can show articles of users on main page?

try (haml):

- current_user.articles.each |article|   = article.name 

you have sure have built association between users , articles correctly in articles_controller.


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -