Skip to content

Instantly share code, notes, and snippets.

@workmad3
Created July 14, 2010 21:28
Show Gist options
  • Select an option

  • Save workmad3/476111 to your computer and use it in GitHub Desktop.

Select an option

Save workmad3/476111 to your computer and use it in GitHub Desktop.
def index
@filialen = Filiale.all
respond_to do |format|
format.html # index.html.erb
format.json { render :json => @filialen}
end
end
class Filiale
def as_json
{:include=> :filiale_images}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment