Render and/or redirect were called multiple times in this action. Please note that you may only call render OR redirect, and at most once per action. Also note that neither redirect nor render terminate execution of the action, so if you want to exit an action after redirecting, you need to do something like "redirect_to(...) and return".
> I've overrided the Registrations Controller, defined the new one in routes.rb and then override the after_inactive_sign_up_path_for since I'm using :confirmable with this:
>
> def after_inactive_sign_up_path_for(resource)
> redirect_to new_user_session_path
> end
>
> but I get an error about double redirect:
This method should just return the path, not actually redirect to it. So remove redirect_to from the second line, and leave everything else alone and it should work.
Walter