I have a form where I collect a lot of information in Rails. Part of this form is fields for a new user to register. Since Devise has controllers/actions specifically to cre
For new people seeing this question...
A simple way to do this is in your
config/routes.rb
you should have a line like the following :
devise_for :users
so, you just have to add a path prefix that devise will use:
devise_for :users, :path_prefix =>'auth'
Hope it helps!
Saving the newly created user before sign_in will fail because devise has not yet filled the required fields for User object yet. So David's code will work for the current page, but the next page won't get the signed in user, since the user is only saved after the session is set. This happens when I use Mongoid, and I don't know if it is a problem specific to Mongodb.
To address this problem, I have a very imperfect solution to call sign_in twice. The first sign_in will save the user. It just works but people can improve it certainly.
@user = User.new(:email => 'test@example.com',
:password => 'password',
:password_confirmation => 'password')
# This will save the user in db with fields for devise
sign_in @user
# :bypass is set to ignore devise related callbacks and only save the
# user into session.
sign_in @user, :bypass => true
You can create a new Devise user simply by creating a new user model (see https://github.com/plataformatec/devise/wiki/How-To:-Manage-users-through-a-CRUD-interface)
@user = User.new(:email => 'test@example.com', :password => 'password', :password_confirmation => 'password')
@user.save
To sign in your newly created user, use sign_in @user