Created
August 16, 2014 11:08
-
-
Save SonVu/42875d206819e1214c11 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
private | |
def current_cart | |
Cart.find(session[:cart_id]) | |
rescue ActiveRecord::RecordNotFound | |
cart = Cart.create | |
session[:cart_id] = cart.id | |
cart | |
end | |
end | |
class StoreController < ApplicationController | |
def index | |
@products = Product.all | |
@cart = current_cart | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment