Hi I am using the devise gem for rails for app.
My question is after user creates the account I want him/her to create a profile as well. I want both to happen at the same time so I can do a 1-1 match with the user id and profile id.
How can I do this?
Much thanks!
Make it so the
usermodel has ahas_onerelationship with aprofilemodel, and give the user model anafter_createcallback which creates a profile. What exactly are you confused about?