summaryrefslogtreecommitdiff
path: root/app/controllers
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/application_controller.rb3
-rw-r--r--app/controllers/users_controller.rb10
2 files changed, 11 insertions, 2 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
index 83a2278..7487f87 100644
--- a/app/controllers/application_controller.rb
+++ b/app/controllers/application_controller.rb
@@ -4,6 +4,5 @@ class ApplicationController < ActionController::Base
protect_from_forgery with: :exception
#include sessionhelper for the session controller and view
- #include SessionHelper
-
+ include SessionsHelper
end
diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb
index f4e1499..74ab72c 100644
--- a/app/controllers/users_controller.rb
+++ b/app/controllers/users_controller.rb
@@ -3,6 +3,16 @@ class UsersController < ApplicationController
def new
end
+ def create
+ @user = User.new(user_params)
+ if @user.save
+ sign_in @user
+ #redirect_to @user
+ else
+ render 'new'
+ end
+ end
+
def show
@user = User.find(param[:id])
end