Nidhin S G
Nidhin S G

Reputation: 1695

New Profile Edit Page using Devise

I have a profile page in my project. I want to make a custom edit page...In which i can change password as well as user image and other stuffs using DEVISE gem. How should i do this. All i have now is an edit button in my profile page. I'm not so experienced in Ruby, so i have so many doubt regarding this. 1) Should i make a new html page for this? 2) How to update the password in controller? 3) Will it affect the signup page or anyother pages if i make changes in the default edit page of Devise.

Pls Help

Upvotes: 1

Views: 908

Answers (1)

Richard Peck
Richard Peck

Reputation: 76774

Devise just handles the authentication -- it doesn't care how you edit the attributes on its associated model, as long as its columns are present

If you've added an image attribute, and other elements, to the user model - you may wish to use something like this tutorial to help your users edit their respective attributes

I could give you some code if you want

Upvotes: 1

Related Questions