Skip to content

Instantly share code, notes, and snippets.

@tbuehlmann
Forked from SonVu/gist:42875d206819e1214c11
Last active August 29, 2015 14:05
Show Gist options
  • Select an option

  • Save tbuehlmann/a1bfa087f3b84f15eb78 to your computer and use it in GitHub Desktop.

Select an option

Save tbuehlmann/a1bfa087f3b84f15eb78 to your computer and use it in GitHub Desktop.
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
@current_cart ||= begin
Cart.find(session[:cart_id])
rescue ActiveRecord::RecordNotFound
cart = Cart.create
session[:cart_id] = cart.id
cart
end
end
helper_method :current_cart
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