i want to extened the sign up form of my devise installation. i created a Profile model and asking myself now, how can i add specific data of the form to this model. Where is the UserController of devise located?
thanks in advance!
|
i want to extened the sign up form of my devise installation. i created a Profile model and asking myself now, how can i add specific data of the form to this model. Where is the UserController of devise located? thanks in advance!
| |||||
feedback
|
|
Assuming you have a User model with a has_one Profile association, you simply need to modify your devise registration view. Run the 'rails generate devise:views' command then modify the devise registrations#new.html.erb view as shown below using the fields_for form helper to have your sign up form update your Profile model along with your User model.
| |||||||||||
feedback
|
|
It's not very clear from your question, but I'm assuming your Devise model is You'll need to create a controller for your User model with You'll also need to generate the views for your users with From there, it's just like any other model: create a user and profile instance and link the two. Then, in controllers, use Note that if you're going to manage users this way, you'll need to remove the | |||
|
feedback
|