Sha256: 253334d7093294abef3d71c049b24dea536ce56e81eb5fdf3a2f93bca9c806a1
Contents?: true
Size: 1.94 KB
Versions: 19
Compression:
Stored size: 1.94 KB
Contents
class PeopleController < ApplicationController list # GET /people # GET /people.json def index @people = Person.all respond_to do |format| format.html # index.html.erb format.json { render :json => @people } end end # GET /people/1 # GET /people/1.json def show @person = Person.find(params[:id]) respond_to do |format| format.html # show.html.erb format.json { render :json => @person } end end # GET /people/new # GET /people/new.json def new @person = Person.new respond_to do |format| format.html # new.html.erb format.json { render :json => @person } end end # GET /people/1/edit def edit @person = Person.find(params[:id]) end # POST /people # POST /people.json def create @person = Person.new(params[:person]) respond_to do |format| if @person.save format.html { redirect_to @person, :notice => 'Person was successfully created.' } format.json { render :json => @person, :status => :created, :location => @person } else format.html { render :action => "new" } format.json { render :json => @person.errors, :status => :unprocessable_entity } end end end # PUT /people/1 # PUT /people/1.json def update @person = Person.find(params[:id]) respond_to do |format| if @person.update_attributes(params[:person]) format.html { redirect_to @person, :notice => 'Person was successfully updated.' } format.json { head :no_content } else format.html { render :action => "edit" } format.json { render :json => @person.errors, :status => :unprocessable_entity } end end end # DELETE /people/1 # DELETE /people/1.json def destroy @person = Person.find(params[:id]) @person.destroy respond_to do |format| format.html { redirect_to people_url } format.json { head :no_content } end end end
Version data entries
19 entries across 19 versions & 1 rubygems