Overriding Devise's registration controller to allow for a redirect after a successful sign_up has been done
I have looked all over the place, and found a lot of info... but nothing works for me and I don't get it :( I know that you are suppose to override the registration controller, like this: class Users::RegistrationsController < Devise::RegistrationsController def after_sign_up_path_for(resource) authors_waiting_path end end Then following the example showed by Tony Amoyal http://www.tonyamoyal.com/2010/07/28/rails-authentication-with-devise-and-cancan-customizing-devise-controllers/ , I am supposed to change my routes to update the access the new controller: devise_for :users, :controllers => {