Skip to content

Instantly share code, notes, and snippets.

@stochastic-thread
Created July 19, 2015 23:19
Show Gist options
  • Save stochastic-thread/62acb7a1c84d92a55e74 to your computer and use it in GitHub Desktop.
Save stochastic-thread/62acb7a1c84d92a55e74 to your computer and use it in GitHub Desktop.
current_order
class ApplicationController < ActionController::Base
protect_from_forgery with: :exception
helper_method :current_order
def current_order
if !session[:order_id].nil?
Order.find(session[:order_id])
else
Order.new
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment