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
Post a Comment