Created
July 19, 2015 23:19
-
-
Save stochastic-thread/62acb7a1c84d92a55e74 to your computer and use it in GitHub Desktop.
current_order
This file contains 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 | |
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