You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

11 line
203 B

  1. module CurrentCart
  2. private
  3. def set_cart
  4. @cart = Cart.find(session[:cart_id])
  5. rescue ActiveRecord::RecordNotFound
  6. @cart = Cart.create
  7. session[:cart_id] = @cart.id
  8. end
  9. end