summaryrefslogtreecommitdiff
path: root/app/controllers/sessions_controller.rb
diff options
context:
space:
mode:
authorDavisLWebb <davislwebb@ymail.com>2014-03-02 18:12:25 -0500
committerDavisLWebb <davislwebb@ymail.com>2014-03-02 18:12:25 -0500
commit9e424027534be31696b5e065e57f65885445cafa (patch)
tree565de4933ad1bc967d0e38bf488e6dae8a116361 /app/controllers/sessions_controller.rb
parent2426a2b1e5b6811f47f0a05dd66a001fdd117450 (diff)
THIS SHOULD COMMIT THE SESSION FILES
Diffstat (limited to 'app/controllers/sessions_controller.rb')
-rw-r--r--app/controllers/sessions_controller.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/controllers/sessions_controller.rb b/app/controllers/sessions_controller.rb
new file mode 100644
index 0000000..8a9de56
--- /dev/null
+++ b/app/controllers/sessions_controller.rb
@@ -0,0 +1,25 @@
+class SessionsController < ApplicationController
+
+ def new
+ end
+
+ def create
+ user = User.find_by(email: params[:session][:email].downcase)
+ if user && user.authenticate(params[:session][:password])
+ sign_in user
+ #redirect goes here
+ else
+ render 'new'
+ end
+ end
+
+ def destroy
+
+ sign_out
+
+ #I dont know where to redirect to so yeah
+ # redirect_to sign_in
+
+ end
+
+end