forked from saurabh/orbit4-5
23 lines
486 B
Ruby
23 lines
486 B
Ruby
class UsersController < ApplicationController
|
|
layout "authentication"
|
|
def new
|
|
@user = User.new
|
|
end
|
|
|
|
def create
|
|
@user = User.new(user_params)
|
|
if @user.save
|
|
redirect_to root_url, :notice => "Signed Up Successfully!"
|
|
else
|
|
render "new"
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
# Never trust parameters from the scary internet, only allow the white list through.
|
|
def user_params
|
|
params.require(:user).permit(:email, :password, :password_confirmation, :user_name)
|
|
end
|
|
end
|