On Monday, December 30, 2013 12:03:57 PM UTC, Ruby-Forum.com User wrote: > > I am new to ruby on rails. > I have 2 models, user and user_profile. > user has_one user_profile. > User_profile belongs_to user. > when creating user I want to create user_profile, in one form get user > and user_profile and save both.How ca I do that. > Thanks for your help. >
One approach is to use accepts_nested_attributes - see http://guides.rubyonrails.org/v3.2.14/2_3_release_notes.html#nested-object-forms for example. Fred > > -- > 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 unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/e57e29ca-512a-43b2-a4c1-c140fbd22a4e%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.

