diff options
author | DavisLWebb <davislwebb@ymail.com> | 2014-03-02 15:59:50 -0500 |
---|---|---|
committer | DavisLWebb <davislwebb@ymail.com> | 2014-03-02 15:59:50 -0500 |
commit | 7d84062ebe272855c0e6ebbfd991ab277fdc079f (patch) | |
tree | b7e435021aeb4a78f1e1798556e52c6f1f9c2857 /app/controllers | |
parent | 0d3a1f6030eec5631892ec733ec75001bfe2f9ff (diff) |
currently adding Session controller and view
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/application_controller.rb | 4 |
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 |