Created
April 24, 2016 19:28
-
-
Save jordangraft/ee151a62fa5e28294948c8db94c3d9df 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
def create | |
@order = Order.new(order_params) | |
@order.ga_id = session[:ga_id] | |
if @order.save | |
redirect_to orders_edit_path, notice: 'Order was successfully created.' | |
else | |
render 'static/home' | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment