I have a Rails app set up using Devise, with a Registration controller.
What\'s working so far:
New user registration Login Logout Home About Confirmation P
I typically just add a
resources :users, only: [:show, :edit, :update]
This will give you a /users/:id route (your profile), and can edit and update it. That way, you're interacting with the User model just as you normally would, outside of Devise.