I have setup a blank app with devise and the routes look like so:
devise_for :users
Since devise already set up the model, I used rails g scaffold_controller users
to generate the controller.
(I think) the only thing missing now are the routes
How do I set these up? (I presume resources :users
could overwrite / interfere with the routing devise sets up for us?)