Skip to content

Instantly share code, notes, and snippets.

@edison
Created September 8, 2012 18:52
Show Gist options
  • Save edison/3678589 to your computer and use it in GitHub Desktop.
Save edison/3678589 to your computer and use it in GitHub Desktop.
form
class QuotesController < ApplicationController
def home
respond_to :html
end
def new
@quote = Quote.new
respond_to :html
end
def create
@quote = Quote.new
respond_to do |f|
if @quote.save
f.html { redirect_to quote_path(@quote) }
else
f.html { render action: 'new' }
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment