Created
August 7, 2012 15:40
-
-
Save davidpelaez/3286483 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class EntriesController < ApplicationController | |
respond_to :json | |
def index | |
respond_with Entry.all | |
end | |
def show | |
respond_with Entry.find(params[:id]) | |
end | |
def create | |
respond_with Entry.create(params[:entry]) | |
end | |
def update | |
respond_with Entry.update(params[:id], params[:entry]) | |
end | |
def destroy | |
respond_with Entry.destroy(params[:id]) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment