summaryrefslogtreecommitdiff
path: root/app/controllers/application_controller.rb
diff options
context:
space:
mode:
authorDavisLWebb <davislwebb@ymail.com>2014-03-02 15:59:50 -0500
committerDavisLWebb <davislwebb@ymail.com>2014-03-02 15:59:50 -0500
commit7d84062ebe272855c0e6ebbfd991ab277fdc079f (patch)
treeb7e435021aeb4a78f1e1798556e52c6f1f9c2857 /app/controllers/application_controller.rb
parent0d3a1f6030eec5631892ec733ec75001bfe2f9ff (diff)
currently adding Session controller and view
Diffstat (limited to 'app/controllers/application_controller.rb')
-rw-r--r--app/controllers/application_controller.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
index d83690e..03ef797 100644
--- a/app/controllers/application_controller.rb
+++ b/app/controllers/application_controller.rb
@@ -2,4 +2,8 @@ class ApplicationController < ActionController::Base
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
protect_from_forgery with: :exception
+
+ #include sessionhelper for the session controller and view
+ include SessionHelper
+
end