Sha256: 1547a9049c26f4b5fff4c529b7337959b56f15a505c351b12df021aec32c8672

Contents?: true

Size: 1.86 KB

Versions: 8

Compression:

Stored size: 1.86 KB

Contents

class UsersController < ApplicationController
  # GET /users
  # GET /users.xml
  def index
    @users = User.find(:all)

    respond_to do |format|
      format.html # index.html.erb
      format.xml  { render :xml => @users }
    end
  end

  # GET /users/1
  # GET /users/1.xml
  def show
    @user = User.find(params[:id])

    respond_to do |format|
      format.html # show.html.erb
      format.xml  { render :xml => @user }
    end
  end

  # GET /users/new
  # GET /users/new.xml
  def new
    @user = User.new

    respond_to do |format|
      format.html # new.html.erb
      format.xml  { render :xml => @user }
    end
  end

  # GET /users/1/edit
  def edit
    @user = User.find(params[:id])
  end

  # POST /users
  # POST /users.xml
  def create
    @user = User.new(params[:user])

    respond_to do |format|
      if @user.save
        flash[:notice] = 'User was successfully created.'
        format.html { redirect_to(@user) }
        format.xml  { render :xml => @user, :status => :created, :location => @user }
      else
        format.html { render :action => "new" }
        format.xml  { render :xml => @user.errors, :status => :unprocessable_entity }
      end
    end
  end

  # PUT /users/1
  # PUT /users/1.xml
  def update
    @user = User.find(params[:id])

    respond_to do |format|
      if @user.update_attributes(params[:user])
        flash[:notice] = 'User was successfully updated.'
        format.html { redirect_to(@user) }
        format.xml  { head :ok }
      else
        format.html { render :action => "edit" }
        format.xml  { render :xml => @user.errors, :status => :unprocessable_entity }
      end
    end
  end

  # DELETE /users/1
  # DELETE /users/1.xml
  def destroy
    @user = User.find(params[:id])
    @user.destroy

    respond_to do |format|
      format.html { redirect_to(users_url) }
      format.xml  { head :ok }
    end
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
has_many_polymorphs-2.11 test/integration/app/app/controllers/users_controller.rb
ultrasphinx-1.11 test/integration/app/app/controllers/users_controller.rb
ultrasphinx-1.6.7 test/integration/app/app/controllers/users_controller.rb
ultrasphinx-1.5.3 test/integration/app/app/controllers/users_controller.rb
ultrasphinx-1.7 test/integration/app/app/controllers/users_controller.rb
ultrasphinx-1.9 test/integration/app/app/controllers/users_controller.rb
ultrasphinx-1.8 test/integration/app/app/controllers/users_controller.rb
ultrasphinx-1.6 test/integration/app/app/controllers/users_controller.rb