From 6674d1f2f5ec395f90d958001dce4a20cdad7879 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Wed, 30 Dec 2015 16:58:07 -0800 Subject: Initial commit. Base Rails 4.2.5 project. --- app/controllers/application_controller.rb | 5 +++++ app/controllers/concerns/.keep | 0 2 files changed, 5 insertions(+) create mode 100644 app/controllers/application_controller.rb create mode 100644 app/controllers/concerns/.keep (limited to 'app/controllers') diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb new file mode 100644 index 0000000..d83690e --- /dev/null +++ b/app/controllers/application_controller.rb @@ -0,0 +1,5 @@ +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 +end diff --git a/app/controllers/concerns/.keep b/app/controllers/concerns/.keep new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3