Skip to content

Instantly share code, notes, and snippets.

@devoutdesign
Created September 27, 2010 04:23
Show Gist options
  • Save devoutdesign/598598 to your computer and use it in GitHub Desktop.
Save devoutdesign/598598 to your computer and use it in GitHub Desktop.
class ChaptersController < ApplicationController
respond_to :html, :xml, :json
# GET /books/1/chapters/new
def new
@book = Book.find(params[:book_id])
@chapter = @book.chapters.new
respond_with(@chapter)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment