Skip to content

Instantly share code, notes, and snippets.

@Znow
Created June 22, 2011 23:37
Show Gist options
  • Select an option

  • Save Znow/1041562 to your computer and use it in GitHub Desktop.

Select an option

Save Znow/1041562 to your computer and use it in GitHub Desktop.
#gallery model
has_many :images
#image model
belongs_to :gallery
#galleries controller
def show
@gallery = Gallery.find(params[:id])
@image = @gallery.images.build
respond_with(@gallery, @image)
end
#gallery show.haml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment