Are controllers in devise automatically generated? How do you access them?
I know for views you do
rails generate devise_views.
Below one is for Rails 5
Generate rails devise controllers using the following command:
rails generate devise:controllers users
if you modified the above generated controllers, add the following line to the routes.rb,
devise_for :users, controllers: {registrations:'user/registrations'}
Your modifications will take effect once you restart the rails server