I\'m going to create a multi user app, so, I will have a admin user that will have permission to create new ones.
I\'ve created the UsersControllerbut when
UsersController
In a controller method can't you just go:
def create_user @user = User.new(:email => params[:email], :password => params[:password]) @user.save ... end