tap/app/controllers/application_controller.rb

8 lines
230 B
Ruby
Raw Normal View History

2014-11-06 13:46:59 +00:00
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
2014-11-10 01:30:42 +00:00
2014-11-23 20:12:31 +00:00
include OrdersHelper
2014-11-06 13:46:59 +00:00
end