Skip to content

Instantly share code, notes, and snippets.

@jonpaul
Created July 11, 2011 17:14
Show Gist options
  • Save jonpaul/1076305 to your computer and use it in GitHub Desktop.
Save jonpaul/1076305 to your computer and use it in GitHub Desktop.
class EventsController < InheritedResources::Base
respond_to :json, :only => :index
def index
@events = Event.all
respond_with(@events, :only => [:id, :title, :start])
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment