Make a field in your project model called user_id. Then in the Project.rb file put
belongs_to :user And in the User model has_many :projects Then when you create a project, set user_id = current_user.id. Finally to display them simply use user.projects Hope this helped. -- 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 -~----------~----~----~----~------~----~------~--~---

